aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-01 01:46:03 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-01 11:41:04 +0200
commit1c94f88d5ecddd4f0d03e1c2751f6414a04ee73b (patch)
tree0374e3e6348bcde913c95c78be37b8343c9ddc61 /src/util.cpp
parentf8e4d43be7a66f205f5b623f39e88f9bad02dedb (diff)
downloadbitcoin-1c94f88d5ecddd4f0d03e1c2751f6414a04ee73b.tar.xz
fix compiler warning "suggest parentheses around assignment used as truth
value [-Wparentheses]" in util.cpp
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index cd3d3b94a9..3569f22ecd 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;