mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 07:01:03 +08:00
Closing parentheses is good - doing it while respecting printf format specifiers is even better
llvm-svn: 180156
This commit is contained in:
@@ -340,7 +340,7 @@ lldb_private::formatters::NSNumberSummaryProvider (ValueObject& valobj, Stream&
|
||||
stream.Printf("(long)%" PRId64,value);
|
||||
break;
|
||||
default:
|
||||
stream.Printf("unexpected value:(info=%" PRIu64 ", value=%)" PRIu64,i_bits,value);
|
||||
stream.Printf("unexpected value:(info=%" PRIu64 ", value=%" PRIu64 ")",i_bits,value);
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user