diff options
| author | Gavin Andresen <[email protected]> | 2014-02-26 12:16:03 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2014-02-26 12:16:03 -0500 |
| commit | e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d (patch) | |
| tree | 9453db3d22436dcd60c45ce880ecf7c0b683850f /src/db.cpp | |
| parent | Merge pull request #3736 (diff) | |
| parent | Remove definition of PRI?64 in util.h (diff) | |
| download | discoin-e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d.tar.xz discoin-e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d.zip | |
Merge pull request #3735 from laanwj/2014_02_remove_PRIx64_completely
Remove PRIx64 usage completely
Diffstat (limited to 'src/db.cpp')
| -rw-r--r-- | src/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.cpp b/src/db.cpp index 591d4ed47..521562fe6 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -463,7 +463,7 @@ void CDBEnv::Flush(bool fShutdown) else mi++; } - LogPrint("db", "DBFlush(%s)%s ended %15"PRId64"ms\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started", GetTimeMillis() - nStart); + LogPrint("db", "DBFlush(%s)%s ended %15dms\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started", GetTimeMillis() - nStart); if (fShutdown) { char** listp; |