Closing parentheses is good - doing it while respecting printf format specifiers is even better

llvm-svn: 180156
This commit is contained in:
Enrico Granata
2013-04-23 22:38:25 +00:00
parent 283b265309
commit 66e0abb3bc

View File

@@ -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;