diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-01-23 17:25:12 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-01-23 17:25:39 +0100 |
| commit | 6403c6c835a3302a6ee575576be93e4104a39685 (patch) | |
| tree | eeca53e065947846648d9373f240d593c0c0ecfc /src/addrman.cpp | |
| parent | build: fix typo in configure help message (diff) | |
| parent | Remove redundant .c_str()s (diff) | |
| download | discoin-6403c6c835a3302a6ee575576be93e4104a39685.tar.xz discoin-6403c6c835a3302a6ee575576be93e4104a39685.zip | |
Merge pull request #3549
7d9d134 Remove redundant .c_str()s (Wladimir J. van der Laan)
b77dfdc Typesafe strprintf/error/LogPrint functions (Wladimir J. van der Laan)
Diffstat (limited to 'src/addrman.cpp')
| -rw-r--r-- | src/addrman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/addrman.cpp b/src/addrman.cpp index 46b4a9493..3628af2ea 100644 --- a/src/addrman.cpp +++ b/src/addrman.cpp @@ -304,7 +304,7 @@ void CAddrMan::Good_(const CService &addr, int64_t nTime) // TODO: maybe re-add the node, but for now, just bail out if (nUBucket == -1) return; - LogPrint("addrman", "Moving %s to tried\n", addr.ToString().c_str()); + LogPrint("addrman", "Moving %s to tried\n", addr.ToString()); // move nId to the tried tables MakeTried(info, nId, nUBucket); |