summaryrefslogtreecommitdiff
path: root/ext/standard/scanf.c
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-04-02 05:17:36 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-04-02 05:17:36 +0000
commit76fc7f3845acc03fb2cd318d1c204070826821d2 (patch)
treefefa7b54099e412c95db250f14ff28dc88a404b2 /ext/standard/scanf.c
parentc27bf17f634a7cb1397b9ca5e1a8f63fb25dc4f4 (diff)
downloadphp-git-76fc7f3845acc03fb2cd318d1c204070826821d2.tar.gz
MFH:
We dont need to escape % here, it just generates a compiler warning
Diffstat (limited to 'ext/standard/scanf.c')
-rw-r--r--ext/standard/scanf.c2
1 files changed, 1 insertions, 1 deletions
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;
}