From f490cdfae3fd1e20a6a18bc973e342d86baefe64 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Thu, 28 May 2009 20:46:05 +0000 Subject: [PATCH] % shouldn't be escaped here --- 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 b2ff8ea5e9..bc4a1a6f69 100644 --- a/ext/standard/scanf.c +++ b/ext/standard/scanf.c @@ -850,7 +850,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