From 11d630b9e922fdb5d2c2168d913a3daac864bacc Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Thu, 2 Apr 2009 05:16:55 +0000 Subject: [PATCH] We dont need to escape % here, it just generates a compiler warning --- ext/standard/scanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/scanf.c b/ext/standard/scanf.c index f041b14334..b2ff8ea5e9 100644 --- a/ext/standard/scanf.c +++ b/ext/standard/scanf.c @@ -574,7 +574,7 @@ notXpg: 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; } -- 2.50.1