sniper          Thu Feb 19 22:16:59 2004 EDT

  Modified files:              
    /php-src/ext/oci8   oci8.c 
  Log:
  Fix compile failure
  
http://cvs.php.net/diff.php/php-src/ext/oci8/oci8.c?r1=1.251&r2=1.252&ty=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.251 php-src/ext/oci8/oci8.c:1.252
--- php-src/ext/oci8/oci8.c:1.251       Thu Feb 19 22:05:42 2004
+++ php-src/ext/oci8/oci8.c     Thu Feb 19 22:16:51 2004
@@ -22,7 +22,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: oci8.c,v 1.251 2004/02/20 03:05:42 sniper Exp $ */
+/* $Id: oci8.c,v 1.252 2004/02/20 03:16:51 sniper Exp $ */
 
 /* TODO list:
  *
@@ -786,7 +786,7 @@
 
        php_info_print_table_start();
        php_info_print_table_row(2, "OCI8 Support", "enabled");
-       php_info_print_table_row(2, "Revision", "$Revision: 1.251 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.252 $");
 
        sprintf(buf, "%ld", num_persistent);
        php_info_print_table_row(2, "Active Persistent Links", buf);
@@ -838,7 +838,7 @@
 {
        TSRMLS_FETCH();
        
-       oci_descriptor *descr = *((oci_descriptor **)data);
+       oci_descriptor *descr = *(oci_descriptor **)data;
        if (descr->buffering == 2 && (descr->type == OCI_DTYPE_LOB || descr->type == 
OCI_DTYPE_FILE)) {
                oci_lob_flush(descr,OCI_LOB_BUFFER_FREE TSRMLS_CC);
                descr->buffering = 1;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to