diff options
author | Scott MacVicar <scottmac@php.net> | 2009-06-08 02:15:42 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2009-06-08 02:15:42 +0000 |
commit | 3474172eb9968409d59dae8d996273b2bad92146 (patch) | |
tree | 3fcc52d42ec93bd62329868d18d778508d36b166 /ext/sqlite3/php_sqlite3_structs.h | |
parent | 8c828362642192e19fe0a6c7ab2399d136f130f8 (diff) | |
download | php-git-3474172eb9968409d59dae8d996273b2bad92146.tar.gz |
Change more things to the UTF-16 API and make SQLite3::enableExceptions() return the previous value.
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index 8e4ccf4040..ad6a9a9826 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -55,7 +55,7 @@ struct php_sqlite3_fci { typedef struct _php_sqlite3_func { struct _php_sqlite3_func *next; - const char *func_name; + const UChar *func_name; int argc; zval *func, *step, *fini; |