tony2001                Mon Jan 26 09:02:09 2004 EDT

  Modified files:              
    /php-src/ext/oci8   oci8.c 
  Log:
  oops =(
  forgot these brackets..
  
  
http://cvs.php.net/diff.php/php-src/ext/oci8/oci8.c?r1=1.239&r2=1.240&ty=u
Index: php-src/ext/oci8/oci8.c
diff -u php-src/ext/oci8/oci8.c:1.239 php-src/ext/oci8/oci8.c:1.240
--- php-src/ext/oci8/oci8.c:1.239       Mon Jan 26 08:59:42 2004
+++ php-src/ext/oci8/oci8.c     Mon Jan 26 09:02:08 2004
@@ -22,7 +22,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: oci8.c,v 1.239 2004/01/26 13:59:42 tony2001 Exp $ */
+/* $Id: oci8.c,v 1.240 2004/01/26 14:02:08 tony2001 Exp $ */
 
 /* TODO list:
  *
@@ -785,7 +785,7 @@
 
        php_info_print_table_start();
        php_info_print_table_row(2, "OCI8 Support", "enabled");
-       php_info_print_table_row(2, "Revision", "$Revision: 1.239 $");
+       php_info_print_table_row(2, "Revision", "$Revision: 1.240 $");
 
        sprintf(buf, "%ld", num_persistent);
        php_info_print_table_row(2, "Active Persistent Links", buf);
@@ -6505,7 +6505,7 @@
 
                /* Return null if the value is null */
                if (*elemind == OCI_IND_NULL) {
-                       RETURN_NULL;
+                       RETURN_NULL();
                } 
 
                switch (coll->element_typecode) {

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

Reply via email to