Skip to content

Commit 5e750fe

Browse files
committed
fix datatypes
1 parent 6e10627 commit 5e750fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/mysqlnd/mysqlnd_structs.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,15 +1009,15 @@ struct st_mysqlnd_result_metadata
10091009
uint64_t initialized_rows; \
10101010
\
10111011
/* Column lengths of current row - both buffered and unbuffered. For buffered results it duplicates the data found in **data */ \
1012-
unsigned long *lengths; \
1012+
php_uint_t *lengths; \
10131013
\
10141014
MYSQLND_MEMORY_POOL *result_set_memory_pool; \
10151015
\
1016-
unsigned int references; \
1016+
php_uint_t references; \
10171017
\
10181018
MYSQLND_ERROR_INFO error_info; \
10191019
\
1020-
unsigned int field_count; \
1020+
php_uint_t field_count; \
10211021
zend_bool ps; \
10221022
zend_bool persistent; \
10231023
struct st_mysqlnd_result_buffered_methods m; \

0 commit comments

Comments
 (0)