aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2011-07-12 20:22:38 -0700
committerJeff Garzik <[email protected]>2011-07-12 20:22:38 -0700
commit4ea952d5c03e18b9ddd0e97f4434cd9092358dab (patch)
treef0f627dc9188eb11b02bed39ca66287ccd9634af /src/main.cpp
parentUpdate makefile.linux-mingw to work with crypter and UPnP fix. (diff)
parentfix warning: unused function 'SigIllHandlerSSE2' [-Wunused-function] (diff)
downloaddiscoin-4ea952d5c03e18b9ddd0e97f4434cd9092358dab.tar.xz
discoin-4ea952d5c03e18b9ddd0e97f4434cd9092358dab.zip
Merge pull request #399 from muggenhor/warning-fixes
Warning fixes
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6e973493a..690219401 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1688,7 +1688,7 @@ string GetWarnings(string strFor)
return strStatusBar;
else if (strFor == "rpc")
return strRPC;
- assert(("GetWarnings() : invalid parameter", false));
+ assert(!"GetWarnings() : invalid parameter");
return "error";
}