diff options
Diffstat (limited to 'ext/oci8/oci8.c')
| -rw-r--r-- | ext/oci8/oci8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 7b4bdd2e0c..9b7c195bc9 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -126,7 +126,7 @@ MUTEX_T mx_lock; #define CALL_OCI(call) \ { \ if (OCI(in_call)) { \ - php_error_docref(NULL TSRMLS_CC, E_WARNING, "OCI8 Recursive call!\n"); \ + php_error_docref(NULL TSRMLS_CC, E_WARNING, "OCI8 Recursive call!"); \ exit(-1); \ } else { \ OCI(in_call)=1; \ @@ -139,7 +139,7 @@ MUTEX_T mx_lock; { \ if (OCI(in_call)) { \ retcode=-1; \ - php_error_docref(NULL TSRMLS_CC, E_WARNING, "OCI8 Recursive call!\n"); \ + php_error_docref(NULL TSRMLS_CC, E_WARNING, "OCI8 Recursive call!"); \ exit(-1); \ } else { \ OCI(in_call)=1; \ |
