From cf0087ef345423d6a762e78d3daff1f03920d4ac Mon Sep 17 00:00:00 2001 From: Moriyoshi Koizumi Date: Thu, 5 Jun 2003 18:04:30 +0000 Subject: [PATCH] WS fix --- ext/xsl/php_xsl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 9b9562b9b2..c6ab3bf9d3 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -274,7 +274,7 @@ PHP_MINFO_FUNCTION(xsl) { php_info_print_table_start(); php_info_print_table_row(2, "XML/XSLT", "enabled"); - { + { char buffer[128]; int major, minor, subminor; @@ -289,7 +289,7 @@ PHP_MINFO_FUNCTION(xsl) subminor = (xsltLibxmlVersion - major * 10000 - minor * 100); snprintf(buffer, 128, "%d.%d.%d", major, minor, subminor); php_info_print_table_row(2, "libxslt compiled against libxml Version", buffer); - } + } php_info_print_table_end(); /* Remove comments if you have entries in php.ini -- 2.50.1