diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-07-20 20:04:04 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-07-20 20:04:04 +0000 |
commit | 66932056da99d2441e27c10b27c82706671e1dbf (patch) | |
tree | d7778a7a0838b371c85dbd2c5777888caf6b95e9 /include/clang/Analysis/Analyses/FormatString.h | |
parent | 99196b1031d37d37f395a3291ccdd12a3fc01242 (diff) |
Rename 'VoidPtrArg' to 'pArg' in printf/scanf checking.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/Analyses/FormatString.h')
-rw-r--r-- | include/clang/Analysis/Analyses/FormatString.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Analysis/Analyses/FormatString.h b/include/clang/Analysis/Analyses/FormatString.h index be00a12bfe..2d13c59c47 100644 --- a/include/clang/Analysis/Analyses/FormatString.h +++ b/include/clang/Analysis/Analyses/FormatString.h @@ -274,7 +274,7 @@ public: aArg, // 'a', AArg, // 'A', sArg, // 's' - VoidPtrArg, // 'p' + pArg, // 'p' OutIntPtrArg, // 'n' PercentArg, // '%' // MacOS X unicode extensions. @@ -463,7 +463,7 @@ public: aArg, // 'a', AArg, // 'A', sArg, // 's', // match sequence of non-write-space characters - VoidPtrArg, // 'p' + pArg, // 'p' cArg, // 'c', differs from printf, writes array of characters ConsumedSoFarArg, // 'n', differs from printf, writes back args consumed PercentArg, // '%' |