From: Philip Kaufmann Date: Mon, 30 Apr 2012 23:46:03 +0000 (+0200) Subject: fix compiler warning "suggest parentheses around assignment used as truth X-Git-Tag: v0.4.0-unstable~129^2~29^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=1c94f88d5ecddd4f0d03e1c2751f6414a04ee73b fix compiler warning "suggest parentheses around assignment used as truth value [-Wparentheses]" in util.cpp --- diff --git a/src/util.cpp b/src/util.cpp index cd3d3b9..3569f22 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -252,7 +252,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...) *pend = '\0'; char* p1 = pszBuffer; char* p2; - while (p2 = strchr(p1, '\n')) + while ((p2 = strchr(p1, '\n'))) { p2++; char c = *p2;