summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8_int.h
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-02-13 20:19:56 +0000
committerAntony Dovgal <tony2001@php.net>2007-02-13 20:19:56 +0000
commit32c2c7a510c809f3cf81c960b33f13fff0a630be (patch)
treef6d908968f1651f98322ba9b6dbb50a9056e82c8 /ext/oci8/php_oci8_int.h
parent2e35bdc5e98f1c7bad409a08ea109dbe1b2690d8 (diff)
downloadphp-git-32c2c7a510c809f3cf81c960b33f13fff0a630be.tar.gz
MFH
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r--ext/oci8/php_oci8_int.h12
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) \