diff options
| author | Antony Dovgal <tony2001@php.net> | 2007-02-13 20:19:56 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2007-02-13 20:19:56 +0000 |
| commit | 32c2c7a510c809f3cf81c960b33f13fff0a630be (patch) | |
| tree | f6d908968f1651f98322ba9b6dbb50a9056e82c8 /ext/oci8/php_oci8_int.h | |
| parent | 2e35bdc5e98f1c7bad409a08ea109dbe1b2690d8 (diff) | |
| download | php-git-32c2c7a510c809f3cf81c960b33f13fff0a630be.tar.gz | |
MFH
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
| -rw-r--r-- | ext/oci8/php_oci8_int.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index 719496a838..f8670154ae 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -223,22 +223,22 @@ typedef struct { /* php_oci_out_column {{{ */ #define PHP_OCI_CALL(func, params) \ do { \ - OCI_G(in_call) = 1; \ - func params; \ - OCI_G(in_call) = 0; \ if (OCI_G(debug_mode)) { \ php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \ } \ + OCI_G(in_call) = 1; \ + func params; \ + OCI_G(in_call) = 0; \ } while (0) #define PHP_OCI_CALL_RETURN(__retval, func, params) \ do { \ - OCI_G(in_call) = 1; \ - __retval = func params; \ - OCI_G(in_call) = 0; \ if (OCI_G(debug_mode)) { \ php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \ } \ + OCI_G(in_call) = 1; \ + __retval = func params; \ + OCI_G(in_call) = 0; \ } while (0) #define PHP_OCI_HANDLE_ERROR(connection, errcode) \ |
