diff options
author | Pierre Joye <pajoye@php.net> | 2010-04-01 20:21:50 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-04-01 20:21:50 +0000 |
commit | 96e2651fa2f4cb012d9235b7065128ac9ec0d49c (patch) | |
tree | 63e9353470d2e1ddfc2205038b3fc7560a98020c /ext/mysqlnd/mysqlnd_statistics.c | |
parent | a3857fd9631102cbe923cca8fce0d22a4c5c3199 (diff) | |
download | php-git-96e2651fa2f4cb012d9235b7065128ac9ec0d49c.tar.gz |
- revert revision 297277, break the builds (declaration must go 1st, size of void * and other known situations). Also Johannes, can you check that commit pls? Thought we were in bugs fixing only for 5.3
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 8e34de4024..2e7665d8a7 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -99,21 +99,19 @@ const MYSQLND_STRING mysqlnd_stats_values_names[STAT_LAST] = { STR_W_LEN("explicit_stmt_close") }, { STR_W_LEN("implicit_stmt_close") }, { STR_W_LEN("mem_emalloc_count") }, - { STR_W_LEN("mem_emalloc_amount") }, + { STR_W_LEN("mem_emalloc_ammount") }, { STR_W_LEN("mem_ecalloc_count") }, - { STR_W_LEN("mem_ecalloc_amount") }, + { STR_W_LEN("mem_ecalloc_ammount") }, { STR_W_LEN("mem_erealloc_count") }, - { STR_W_LEN("mem_erealloc_amount") }, + { STR_W_LEN("mem_erealloc_ammount") }, { STR_W_LEN("mem_efree_count") }, - { STR_W_LEN("mem_efree_amount") }, { STR_W_LEN("mem_malloc_count") }, - { STR_W_LEN("mem_malloc_amount") }, + { STR_W_LEN("mem_malloc_ammount") }, { STR_W_LEN("mem_calloc_count") }, - { STR_W_LEN("mem_calloc_amount") }, + { STR_W_LEN("mem_calloc_ammount") }, { STR_W_LEN("mem_realloc_count") }, - { STR_W_LEN("mem_realloc_amount") }, + { STR_W_LEN("mem_realloc_ammount") }, { STR_W_LEN("mem_free_count") }, - { STR_W_LEN("mem_free_amount") }, { STR_W_LEN("mem_estrndup_count") }, { STR_W_LEN("mem_strndup_count") }, { STR_W_LEN("mem_estndup_count") }, |