diff options
Diffstat (limited to 'ext/dba/php3_dba.h')
-rw-r--r-- | ext/dba/php3_dba.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dba/php3_dba.h b/ext/dba/php3_dba.h index caa7bfed05..4a1470c503 100644 --- a/ext/dba/php3_dba.h +++ b/ext/dba/php3_dba.h @@ -48,7 +48,7 @@ typedef struct dba_info { dba_mode_t mode; /* arg[cv] are only available when the dba_open handler is called! */ int argc; - pval **argv; + pval ***argv; /* private */ struct dba_handler *hnd; } dba_info; @@ -91,7 +91,7 @@ extern php3_module_entry dba_module_entry; DBA_OPTIMIZE_FUNC(x); \ DBA_SYNC_FUNC(x) -#define VALLEN(p) (p)->value.str.val, (p)->value.str.len +#define VALLEN(p) (*p)->value.str.val, (*p)->value.str.len PHP_FUNCTION(dba_open); PHP_FUNCTION(dba_popen); |