Fix StringPrintf format error.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@611 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2012-04-27 22:18:57 +00:00
parent db3a9817ed
commit dfd4a8ba99
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class CefDevToolsBindingHandler
if (random_seed_.empty()) {
// Generate a random seed that is used to make identifier guessing more
// difficult.
random_seed_ = base::StringPrintf("%lf|%llu",
random_seed_ = base::StringPrintf("%lf|%lu",
base::Time::Now().ToDoubleT(), base::RandUint64());
}