diff options
author | Sascha Schumann <sas@php.net> | 2001-08-05 16:21:33 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-08-05 16:21:33 +0000 |
commit | b349df63645e48eade0481238e6ca3feb90f18fa (patch) | |
tree | d565c9fb1b058469cbbd2d248ea261c59ac6f5c4 /ext/pgsql/pgsql.c | |
parent | 373b3e101e0394f0727e1e5855e18e15851d0919 (diff) | |
download | php-git-b349df63645e48eade0481238e6ca3feb90f18fa.tar.gz |
some more eliminate-fetches-or-escalate-them-at-least
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index 1061ef8583..81fef71dcf 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -174,7 +174,7 @@ _notice_handler(void *arg, const char *message) TSRMLS_FETCH(); if (! PGG(ignore_notices)) { - php_log_err((char *) message); + php_log_err((char *) message TSRMLS_CC); if (PGG(last_notice) != NULL) { efree(PGG(last_notice)); } |