diff options
author | Andrey Hristov <andrey@php.net> | 2008-01-02 21:14:35 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-01-02 21:14:35 +0000 |
commit | fdf20a8287172ec74d0acacdd58b9c0c25d670d5 (patch) | |
tree | 2a72f9d23f1d3f74342805b8905eae3d6fad8351 /ext/mysqlnd/mysqlnd_priv.h | |
parent | fc74136a9066693c9fb9c51f085b2af1f8bbae5c (diff) | |
download | php-git-fdf20a8287172ec74d0acacdd58b9c0c25d670d5.tar.gz |
- Fix problems with double definitions
- Clean up a bit a type mess - 4 types less. No need to have aliases
for the same thing (unification is the name).
- New macro for Johannes mysqlnd_stmt_ro_result_metadata
Diffstat (limited to 'ext/mysqlnd/mysqlnd_priv.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_priv.h b/ext/mysqlnd/mysqlnd_priv.h index c1b9a9657a..3a206cb39c 100644 --- a/ext/mysqlnd/mysqlnd_priv.h +++ b/ext/mysqlnd/mysqlnd_priv.h @@ -115,7 +115,7 @@ #define MAX_CHARSET_LEN 32 -#define SET_ERROR_AFF_ROWS(s) (s)->upsert_status.affected_rows = (mynd_ulonglong) ~0 +#define SET_ERROR_AFF_ROWS(s) (s)->upsert_status.affected_rows = (uint64) ~0 /* Error handling */ #define SET_NEW_MESSAGE(buf, buf_len, message, len, persistent) \ |