diff options
author | Neozaru <neozaru@mailoo.org> | 2014-05-28 22:27:59 +0200 |
---|---|---|
committer | Neozaru <neozaru@mailoo.org> | 2014-05-28 22:27:59 +0200 |
commit | 506fd372ec78f3cb5c492fc981bbaac7936be8aa (patch) | |
tree | 3cdabd0da9e79f3fbabf1f564d5f456356390a91 /src | |
parent | Added '--exit-after-cmd' option in simplewallet (diff) | |
download | monero-506fd372ec78f3cb5c492fc981bbaac7936be8aa.tar.xz |
simplewallet returns 0 when no error
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index b5f4b7a6f..7485f5cb1 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1071,6 +1071,6 @@ int main(int argc, char* argv[]) w.deinit(); } - return 1; + return 0; //CATCH_ENTRY_L0("main", 1); } |