diff options
author | Andrey Hristov <andrey@php.net> | 2011-03-16 11:51:56 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2011-03-16 11:51:56 +0000 |
commit | 4a382563945bd50b983408a62aa41fcc514335e7 (patch) | |
tree | 21eeaa1d1ff23047fa5d9ca06170b29bf791c9dd /ext/mysqlnd/mysqlnd_structs.h | |
parent | 8c06867e11aecf3d47ac1fe8255d7abafbb9f706 (diff) | |
download | php-git-4a382563945bd50b983408a62aa41fcc514335e7.tar.gz |
compiler warnings fixed
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index a78a6bc8f0..5afd8eae04 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -132,7 +132,7 @@ typedef struct st_mysqlnd_charset typedef struct st_mysqlnd_infile { int (*local_infile_init)(void **ptr, char *filename, void **userdata TSRMLS_DC); - int (*local_infile_read)(void *ptr, char *buf, unsigned int buf_len TSRMLS_DC); + int (*local_infile_read)(void *ptr, zend_uchar * buf, unsigned int buf_len TSRMLS_DC); int (*local_infile_error)(void *ptr, char *error_msg, unsigned int error_msg_len TSRMLS_DC); void (*local_infile_end)(void *ptr TSRMLS_DC); zval *callback; |