Add linting of WalletLogPrintf(...) format strings

This commit is contained in:
practicalswift 2018-08-07 14:57:54 +02:00
parent a3e4556949
commit bcd4b0f5cd
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,8 @@ FALSE_POSITIVES = [
("src/netbase.cpp", "LogConnectFailure(bool manual_connection, const char* fmt, const Args&... args)"),
("src/util.cpp", "strprintf(_(COPYRIGHT_HOLDERS), _(COPYRIGHT_HOLDERS_SUBSTITUTION))"),
("src/util.cpp", "strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION)"),
("src/wallet/wallet.h", "WalletLogPrintf(std::string fmt, Params... parameters)"),
("src/wallet/wallet.h", "LogPrintf((\"%s \" + fmt).c_str(), GetDisplayName(), parameters...)"),
]

View File

@ -24,6 +24,7 @@ FUNCTION_NAMES_AND_NUMBER_OF_LEADING_ARGUMENTS=(
vprintf,1
vsnprintf,1
vsprintf,1
WalletLogPrintf,0
)
EXIT_CODE=0