diff options
author | Hannes Magnusson <bjori@php.net> | 2006-10-08 13:34:24 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2006-10-08 13:34:24 +0000 |
commit | 176b72284c06793e51180eca0a03af1c8691d841 (patch) | |
tree | 917632aec222a34e274711b7bd19c4f6372187fd /ext/sybase/php_sybase_db.c | |
parent | 32d1b3ad5584b76b27024df186758b94c42c721a (diff) | |
download | php-git-176b72284c06793e51180eca0a03af1c8691d841.tar.gz |
Error message clean up
(patch by Matt W (php_lists -AT- realpain.com))
Diffstat (limited to 'ext/sybase/php_sybase_db.c')
-rw-r--r-- | ext/sybase/php_sybase_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase/php_sybase_db.c b/ext/sybase/php_sybase_db.c index 684fa62dce..dd2f1c053c 100644 --- a/ext/sybase/php_sybase_db.c +++ b/ext/sybase/php_sybase_db.c @@ -935,7 +935,7 @@ PHP_FUNCTION(sybase_query) /* Check assumption that dbnextrow returns NO_MORE_ROWS */ retvalue = dbnextrow(sybase_ptr->link); if (retvalue != NO_MORE_ROWS) { - php_error_docref(NULL TSRMLS_CC, E_WARNING,"Expected dbnextrow() to return NO_MORE_ROWS."); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Expected dbnextrow() to return NO_MORE_ROWS"); } } } |