diff options
author | Marcus Boerger <helly@php.net> | 2002-11-07 13:00:37 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-11-07 13:00:37 +0000 |
commit | 927033c616550c3dffd724a3fcef92cee5e41ae0 (patch) | |
tree | 19a6721ff3eb1bb557303d08f691b45e24ef2b16 | |
parent | 8d25447f309f21337ef7b289f7fe56c3278b3c4d (diff) | |
download | php-git-927033c616550c3dffd724a3fcef92cee5e41ae0.tar.gz |
remove debug output and use php_error_docref instead
-rw-r--r-- | ext/dba/dba_gdbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/dba_gdbm.c b/ext/dba/dba_gdbm.c index 386c8f0874..18288ace27 100644 --- a/ext/dba/dba_gdbm.c +++ b/ext/dba/dba_gdbm.c @@ -105,7 +105,7 @@ DBA_UPDATE_FUNC(gdbm) if(gdbm_store(dba->dbf, gkey, gval, mode == 1 ? GDBM_INSERT : GDBM_REPLACE) == 0) return SUCCESS; - printf("XXX %s\n", gdbm_strerror(gdbm_errno)); + php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "%s", gdbm_strerror(gdbm_errno)); return FAILURE; } |