Skip to content

Commit fbe14c9

Browse files
Fix post-rebase format issues
1 parent f96aa63 commit fbe14c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/Sema/SemaChecking.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8460,10 +8460,10 @@ static void CheckFormatString(
84608460
Type == Sema::FST_Syslog) {
84618461
bool IsObjC = Type == Sema::FST_NSString || Type == Sema::FST_OSTrace;
84628462
if (ReferenceFormatString == nullptr) {
8463-
CheckPrintfHandler H(
8464-
S, FExpr, OrigFormatExpr, Type, firstDataArg, numDataArgs, IsObjC, Str,
8465-
APK, Args, format_idx, inFunctionCall, CallType, CheckedVarArgs,
8466-
UncoveredArg);
8463+
CheckPrintfHandler H(S, FExpr, OrigFormatExpr, Type, firstDataArg,
8464+
numDataArgs, IsObjC, Str, APK, Args, format_idx,
8465+
inFunctionCall, CallType, CheckedVarArgs,
8466+
UncoveredArg);
84678467

84688468
if (!analyze_format_string::ParsePrintfString(
84698469
H, Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo(),

0 commit comments

Comments
 (0)