diff options
| author | Jeff Garzik <[email protected]> | 2011-07-12 20:22:38 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-07-12 20:22:38 -0700 |
| commit | 4ea952d5c03e18b9ddd0e97f4434cd9092358dab (patch) | |
| tree | f0f627dc9188eb11b02bed39ca66287ccd9634af /src/main.cpp | |
| parent | Update makefile.linux-mingw to work with crypter and UPnP fix. (diff) | |
| parent | fix warning: unused function 'SigIllHandlerSSE2' [-Wunused-function] (diff) | |
| download | discoin-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.cpp | 2 |
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"; } |