diff options
| author | J Ross Nicoll <[email protected]> | 2015-08-29 17:33:02 +0100 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-08-29 17:33:02 +0100 |
| commit | 1d92617e1513cfd71baddb89e8a5e0688332d287 (patch) | |
| tree | d67d6600b43091a0d537e59148d56a756d3d3709 /src/net.cpp | |
| parent | Merge pull request #1268 from patricklodder/1.10-auxpow-tests (diff) | |
| download | discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.tar.xz discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.zip | |
Corrected missing new lines in error messages
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 3908be682..ce5cd29de 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -548,7 +548,7 @@ bool CNode::ReceiveMsgBytes(const char *pch, unsigned int nBytes) return false; if (msg.in_data && msg.hdr.nMessageSize > MAX_PROTOCOL_MESSAGE_LENGTH) { - LogPrint("net", "Oversized message from peer=%i, disconnecting", GetId()); + LogPrint("net", "Oversized message from peer=%i, disconnecting\n", GetId()); return false; } |