commit | 04e04643f6e71d19530ca3e21cfd567cd2f73bdd | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Aug 26 17:39:38 2007 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Aug 26 17:39:38 2007 +0000 |
tree | b55b2edfe927e36203f9092a0705b5e7a953bbd4 | |
parent | 6f65d20afe5d266be2b708ebd1571dc04b752dbb [diff] [blame] |
Fix %p format checking, patch by Keith Bauer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41454 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Sema/SemaChecking.cpp b/Sema/SemaChecking.cpp index d5445a1..e03507b 100644 --- a/Sema/SemaChecking.cpp +++ b/Sema/SemaChecking.cpp
@@ -308,7 +308,7 @@ case 'C': case 'S': case 's': - case 'P': + case 'p': ++numConversions; CurrentState = state_OrdChr; break;