diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-09-29 11:57:44 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-10-01 19:45:42 +0200 |
commit | d210f4f5b8f904809789a543adeba520686b7573 (patch) | |
tree | 299bb3ab647c1bacdcb393f80a0e84a68f0cfd8e /src/util.cpp | |
parent | bcc292b22d847c15776403197fcacc5ddbb6cd20 (diff) |
fix -Wformat warnings all over the source
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index a8bd8228e5..296842acc3 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -156,7 +156,7 @@ void RandAddSeedPerfmon() { RAND_add(pdata, nSize, nSize/100.0); memset(pdata, 0, nSize); - printf("RandAddSeed() %d bytes\n", nSize); + printf("RandAddSeed() %lu bytes\n", nSize); } #endif } |