mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
bitcoin-cli.cpp: Use symbolic constant for exit code
This commit is contained in:
parent
03cf6e8675
commit
9a8a7d0115
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ int main(int argc, char* argv[])
|
||||||
SetupEnvironment();
|
SetupEnvironment();
|
||||||
if (!SetupNetworking()) {
|
if (!SetupNetworking()) {
|
||||||
fprintf(stderr, "Error: Initializing networking failed\n");
|
fprintf(stderr, "Error: Initializing networking failed\n");
|
||||||
exit(1);
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue