Index: runtime/vm/ast.cc |
=================================================================== |
--- runtime/vm/ast.cc (revision 28314) |
+++ runtime/vm/ast.cc (working copy) |
@@ -86,7 +86,8 @@ |
LocalVariable* LetNode::AddInitializer(AstNode* node) { |
initializers_.Add(node); |
char name[64]; |
- OS::SNPrint(name, sizeof(name), ":lt%" Pd "_%d", token_pos(), vars_.length()); |
+ OS::SNPrint(name, sizeof(name), ":lt%" Pd "_%"Pd"", |
siva
2013/10/07 19:40:30
The Clang compiler will complain for this, need to
srdjan
2013/10/07 20:02:59
Done.
|
+ token_pos(), vars_.length()); |
LocalVariable* temp_var = |
new LocalVariable(token_pos(), |
String::ZoneHandle(Symbols::New(name)), |