Skip to content

Commit 7e40f45

Browse files
authored
Fix format specifier
1 parent 320301d commit 7e40f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/Language/ObjC/NSSet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ lldb_private::formatters::NSSetISyntheticFrontEnd::GetIndexOfChildWithName(
395395
(idx < UINT32_MAX && idx >= CalculateNumChildrenIgnoringErrors()))
396396
return llvm::createStringError(
397397
"'SyntheticChildrenFrontEnd::NSSetISyntheticFrontEnd' cannot find "
398-
"index of child '%s'. (idx='%d')",
398+
"index of child '%s'. (idx='%" PRIu32 "')",
399399
name.AsCString(), idx);
400400
return idx;
401401
}

0 commit comments

Comments
 (0)