From 76fc7f3845acc03fb2cd318d1c204070826821d2 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Thu, 2 Apr 2009 05:17:36 +0000 Subject: [PATCH] MFH: 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 73541fbb5a..621149e2ec 100644 --- a/ext/standard/scanf.c +++ b/ext/standard/scanf.c @@ -394,7 +394,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