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/alert.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/alert.cpp')
| -rw-r--r-- | src/alert.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alert.cpp b/src/alert.cpp index 4429ecadc..46e861be9 100644 --- a/src/alert.cpp +++ b/src/alert.cpp @@ -51,8 +51,8 @@ std::string CUnsignedAlert::ToString() const return strprintf( "CAlert(\n" " nVersion = %d\n" - " nRelayUntil = %"PRId64"\n" - " nExpiration = %"PRId64"\n" + " nRelayUntil = %d\n" + " nExpiration = %d\n" " nID = %d\n" " nCancel = %d\n" " setCancel = %s\n" |