diff options
-rw-r--r-- | ext/db/db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/db/db.c b/ext/db/db.c index ab8c9a5b1f..33f3923fc2 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -424,7 +424,7 @@ dbm_info *php_dbm_open(char *filename, char *mode TSRMLS_DC) else ret = -1; #else #if PHP_DEBUG - php_error1(NULL TSRMLS_CC, filename, E_WARNING, "errno = %d [%s]\n", errno, strerror(errno)); + php_error_docref1(NULL TSRMLS_CC, filename, E_WARNING, "errno = %d [%s]\n", errno, strerror(errno)); #endif if (errno) ret=errno; else ret = -1; |