summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2004-05-31 21:04:21 +0000
committerPierre Joye <pajoye@php.net>2004-05-31 21:04:21 +0000
commitf6354c3a1a04cf15d41e23f157f95cef2c414382 (patch)
tree010599117c52b3008bb41cf41c1109718aed173d
parent9e970ef9a8b079b6e315828911ede1149defdbe6 (diff)
downloadphp-git-f6354c3a1a04cf15d41e23f157f95cef2c414382.tar.gz
MFB: missing ';'
-rw-r--r--ext/informix/ifx.ec5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/informix/ifx.ec b/ext/informix/ifx.ec
index 8372a88bd9..7fa3e21f01 100644
--- a/ext/informix/ifx.ec
+++ b/ext/informix/ifx.ec
@@ -433,7 +433,6 @@ PHP_RINIT_FUNCTION(ifx)
IFXG(num_links) = IFXG(num_persistent);
return SUCCESS;
}
-
PHP_MINFO_FUNCTION(ifx)
{
char buf[32];
@@ -444,7 +443,7 @@ PHP_MINFO_FUNCTION(ifx)
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 @@ EXEC SQL END DECLARE SECTION;
}
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;