pajoye          Mon May 31 17:04:20 2004 EDT

  Modified files:              
    /php-src/ext/informix       ifx.ec 
  Log:
  MFB: missing ';'
  
  
http://cvs.php.net/diff.php/php-src/ext/informix/ifx.ec?r1=1.104&r2=1.105&ty=u
Index: php-src/ext/informix/ifx.ec
diff -u php-src/ext/informix/ifx.ec:1.104 php-src/ext/informix/ifx.ec:1.105
--- php-src/ext/informix/ifx.ec:1.104   Mon May 31 16:25:36 2004
+++ php-src/ext/informix/ifx.ec Mon May 31 17:04:20 2004
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: ifx.ec,v 1.104 2004/05/31 20:25:36 iliaa Exp $ */
+/* $Id: ifx.ec,v 1.105 2004/05/31 21:04:20 pajoye Exp $ */
 
 /* -------------------------------------------------------------------
  * if you want a function reference : "grep '^\*\*' ifx.ec" will give
@@ -433,7 +433,6 @@
        IFXG(num_links) = IFXG(num_persistent);
        return SUCCESS;
 }
-
 PHP_MINFO_FUNCTION(ifx)
 {
        char buf[32];
@@ -444,7 +443,7 @@
        php_info_print_table_row(2, "Active Persistent links", buf);
        sprintf(buf, "%ld", IFXG(num_links)); 
        php_info_print_table_row(2, "Active links", buf);
-       sprintf(buf, "%02.2f", (double)(IFX_VERSION/100.0)); 
+       sprintf(buf, "%02.2f", (double)(IFX_VERSION/100.0));
        php_info_print_table_row(2, "ESQL/C Version", buf);
        php_info_print_table_end();
 
@@ -1419,7 +1418,7 @@
                                }
 
                                if (ifx_check() < 0)   {
-                                       char *ifx_err = ifx_error(ifx)
+                                       char *ifx_err = ifx_error(ifx);
                                        IFXG(sv_sqlcode) = SQLCODE;
                                        EXEC SQL DEALLOCATE DESCRIPTOR :i_descrpid;
                                        EXEC SQL free :statemid;

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

Reply via email to