tony2001 Sun May 4 09:33:57 2008 UTC Modified files: /php-src/ext/posix posix.c Log: fix folding http://cvs.php.net/viewvc.cgi/php-src/ext/posix/posix.c?r1=1.98&r2=1.99&diff_format=u Index: php-src/ext/posix/posix.c diff -u php-src/ext/posix/posix.c:1.98 php-src/ext/posix/posix.c:1.99 --- php-src/ext/posix/posix.c:1.98 Fri Apr 11 10:59:50 2008 +++ php-src/ext/posix/posix.c Sun May 4 09:33:56 2008 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: posix.c,v 1.98 2008/04/11 10:59:50 tony2001 Exp $ */ +/* $Id: posix.c,v 1.99 2008/05/04 09:33:56 tony2001 Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -147,15 +147,16 @@ static PHP_MINFO_FUNCTION(posix) { php_info_print_table_start(); - php_info_print_table_row(2, "Revision", "$Revision: 1.98 $"); + php_info_print_table_row(2, "Revision", "$Revision: 1.99 $"); php_info_print_table_end(); } /* }}} */ -static PHP_GINIT_FUNCTION(posix) +static PHP_GINIT_FUNCTION(posix) /* {{{ */ { posix_globals->last_error = 0; } +/* }}} */ /* {{{ PHP_MINIT_FUNCTION(posix) */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php