From: Antony Dovgal Date: Tue, 6 Sep 2005 21:44:53 +0000 (+0000) Subject: removed __FUNCTION__ (by popular demand) X-Git-Tag: RELEASE_0_9_0~278 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1287891c3b85e21f7497c267122ae30b3bf2562d;p=php removed __FUNCTION__ (by popular demand) --- diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h index f3c26b6906..61667c97d9 100644 --- a/ext/oci8/php_oci8_int.h +++ b/ext/oci8/php_oci8_int.h @@ -199,19 +199,11 @@ typedef struct { /* php_oci_out_column {{{ */ /* {{{ macros */ -#ifdef PHP_WIN32 #define PHP_OCI_CALL(func, params) \ func params; \ if (OCI_G(debug_mode)) { \ php_printf ("OCI8 DEBUG: " #func " at (%s:%d) \n", __FILE__, __LINE__); \ } -#else -#define PHP_OCI_CALL(func, params) \ - func params; \ - if (OCI_G(debug_mode)) { \ - php_printf ("OCI8 DEBUG: " #func " in %s() (%s:%d) \n", __FUNCTION__, __FILE__, __LINE__); \ - } -#endif #define PHP_OCI_HANDLE_ERROR(connection, errcode) \ { \