Closing parentheses once they are open is a good idea
llvm-svn: 180142
diff --git a/lldb/source/DataFormatters/Cocoa.cpp b/lldb/source/DataFormatters/Cocoa.cpp
index e7f4def..deae88c 100644
--- a/lldb/source/DataFormatters/Cocoa.cpp
+++ b/lldb/source/DataFormatters/Cocoa.cpp
@@ -340,7 +340,7 @@
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;