From 1287891c3b85e21f7497c267122ae30b3bf2562d Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 6 Sep 2005 21:44:53 +0000 Subject: [PATCH] removed __FUNCTION__ (by popular demand) --- ext/oci8/php_oci8_int.h | 8 -------- 1 file changed, 8 deletions(-) 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) \ { \ -- 2.50.1