Review-related changes

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@505 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
christian.plesner.hansen@gmail.com 2008-10-15 08:50:34 +00:00
parent a213e39c77
commit 5d4c72efb4

View File

@ -707,8 +707,13 @@ bool Logger::Setup() {
stream.Add("%u", time);
break;
}
case '%':
// %% expands (contracts really) to %.
stream.Put('%');
break;
default:
// All other %'s expand to themselves.
stream.Put('%');
stream.Put(*p);
break;
}