diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-01-15 13:50:54 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-01-15 13:50:54 +0000 |
commit | dbe5972a0d2cc35b24fe160193dd720c141ae008 (patch) | |
tree | 3d732499d816d75e07c1be4b1a43ce42282d05e0 | |
parent | e0e77d7d0218c351598d98301f6bdb529268ece3 (diff) | |
download | php-git-dbe5972a0d2cc35b24fe160193dd720c141ae008.tar.gz |
Fixed typos.
-rw-r--r-- | ext/interbase/interbase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index 08678dd03a..4183d033e3 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -2697,7 +2697,7 @@ PHP_FUNCTION(ibase_blob_get) /* Close or Cancel created or Close open blob */ static void _php_ibase_blob_end(INTERNAL_FUNCTION_PARAMETERS, int bl_end) { - zval *blob_arg; + zval **blob_arg; ibase_blob_handle *ib_blob; RESET_ERRMSG; @@ -2823,7 +2823,7 @@ PHP_FUNCTION(ibase_blob_info) Output blob contents to browser */ PHP_FUNCTION(ibase_blob_echo) { - zval *blob_arg; + zval **blob_arg; char bl_data[IBASE_BLOB_SEG]; unsigned short seg_len; ibase_blob_handle *ib_blob_id; |