kalle           Thu Apr  2 05:16:55 2009 UTC

  Modified files:              
    /php-src/ext/standard       scanf.c 
  Log:
  We dont need to escape % here, it just generates a compiler warning
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/scanf.c?r1=1.47&r2=1.48&diff_format=u
Index: php-src/ext/standard/scanf.c
diff -u php-src/ext/standard/scanf.c:1.47 php-src/ext/standard/scanf.c:1.48
--- php-src/ext/standard/scanf.c:1.47   Tue Mar 10 23:39:40 2009
+++ php-src/ext/standard/scanf.c        Thu Apr  2 05:16:55 2009
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: scanf.c,v 1.47 2009/03/10 23:39:40 helly Exp $ */
+/* $Id: scanf.c,v 1.48 2009/04/02 05:16:55 kalle Exp $ */
 
 /*
        scanf.c --
@@ -574,7 +574,7 @@
                gotSequential = 1;
                if (gotXpg) {
 mixedXPG:
-                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", 
"cannot mix \"\%\" and \"\%n$\" conversion specifiers");
+                       php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", 
"cannot mix \"%\" and \"%n$\" conversion specifiers");
                        goto error;
                }
 



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

Reply via email to