diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-05-04 11:33:36 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-05-04 11:33:53 +0200 |
| commit | da46f9fd665195e27c45286283fab1d53664a586 (patch) | |
| tree | 52394ec803d9b1b03c32c69576c518458c34250b /src/bitcoin-cli.cpp | |
| parent | Merge #7980: [qa] smartfees: Properly use ordered dict (diff) | |
| parent | bitcoin-cli.cpp: Use symbolic constant for exit code (diff) | |
| download | discoin-da46f9fd665195e27c45286283fab1d53664a586.tar.xz discoin-da46f9fd665195e27c45286283fab1d53664a586.zip | |
Merge #7989: bitcoin-cli.cpp: Use symbolic constant for exit code
9a8a7d0 bitcoin-cli.cpp: Use symbolic constant for exit code (Puru)
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 49935699f..a04101d3e 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -314,7 +314,7 @@ int main(int argc, char* argv[]) SetupEnvironment(); if (!SetupNetworking()) { fprintf(stderr, "Error: Initializing networking failed\n"); - exit(1); + return EXIT_FAILURE; } try { |