summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2011-06-11 00:24:26 +0000
committerChristopher Jones <sixd@php.net>2011-06-11 00:24:26 +0000
commit17af8b0179520adf04977d15de44770a2d3d1bbb (patch)
treead4ea152c6bfae3d7ec13fb1d5dbe6497974e957
parentc776180f6e7f776937198571448e9a1afbf9f857 (diff)
downloadphp-git-17af8b0179520adf04977d15de44770a2d3d1bbb.tar.gz
Fix TSRMLS for Windows build
-rw-r--r--ext/oci8/oci8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index e1b0077c68..13713d10ea 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -1314,7 +1314,7 @@ PHP_MINFO_FUNCTION(oci)
php_info_print_table_row(2, "Active Connections", buf);
#if ((OCI_MAJOR_VERSION > 10) || ((OCI_MAJOR_VERSION == 10) && (OCI_MINOR_VERSION >= 2)))
- php_oci_client_get_version(&ver TSRMLS_DC);
+ php_oci_client_get_version(&ver TSRMLS_CC);
php_info_print_table_row(2, "Oracle Run-time Client Library Version", ver);
efree(ver);
#endif