aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet
diff options
context:
space:
mode:
authorNeozaru <neozaru@mailoo.org>2014-05-28 22:27:59 +0200
committerNeozaru <neozaru@mailoo.org>2014-05-28 22:27:59 +0200
commit506fd372ec78f3cb5c492fc981bbaac7936be8aa (patch)
tree3cdabd0da9e79f3fbabf1f564d5f456356390a91 /src/simplewallet
parentAdded '--exit-after-cmd' option in simplewallet (diff)
downloadmonero-506fd372ec78f3cb5c492fc981bbaac7936be8aa.tar.xz
simplewallet returns 0 when no error
Diffstat (limited to 'src/simplewallet')
-rw-r--r--src/simplewallet/simplewallet.cpp2
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);
}