diff options
author | Andrey Hristov <andrey@php.net> | 2008-10-31 20:32:17 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-10-31 20:32:17 +0000 |
commit | 77c1e145e1b70a64caae504c58d78460201df4be (patch) | |
tree | 11b265212bffd1240c7eb3f924f8caecb3aa402f /ext/mysqlnd/mysqlnd_priv.h | |
parent | 4f5895a4d2bb3f213dc58a3bced00a7a6f22a7ee (diff) | |
download | php-git-77c1e145e1b70a64caae504c58d78460201df4be.tar.gz |
MFB:
64bit fixes:
- fixes to sprintf modifiers, cleaning warnings
- use _t types, like uint64_t instead of uint64, thus skipping series of
typedefs.
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 0a666cd314..26ee7e0fef 100644 --- a/ext/mysqlnd/mysqlnd_priv.h +++ b/ext/mysqlnd/mysqlnd_priv.h @@ -98,7 +98,7 @@ #define MAX_CHARSET_LEN 32 -#define SET_ERROR_AFF_ROWS(s) (s)->upsert_status.affected_rows = (uint64) ~0 +#define SET_ERROR_AFF_ROWS(s) (s)->upsert_status.affected_rows = (uint64_t) ~0 /* Error handling */ #define SET_NEW_MESSAGE(buf, buf_len, message, len, persistent) \ |