From f3f0c0b8529e9f8e75fd4d61b56905b74e3b4edd Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 21 Oct 2014 16:03:54 -0700 Subject: [PATCH] style. --- src/bitcoindjs.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index bb7d943f..bda4c51e 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -623,7 +623,8 @@ start_node_thread(void) { try { ReadConfigFile(mapArgs, mapMultiArgs); } catch(std::exception &e) { - fprintf(stderr,"bitcoind.js: Error reading configuration file: %s\n", e.what()); + fprintf(stderr, + "bitcoind.js: Error reading configuration file: %s\n", e.what()); return; } @@ -632,7 +633,8 @@ start_node_thread(void) { // mapArgs["-testnet"] = g_testnet ? "1" : "0"; if (!SelectParamsFromCommandLine()) { - fprintf(stderr, "bitcoind.js: Invalid combination of -regtest and -testnet.\n"); + fprintf(stderr, + "bitcoind.js: Invalid combination of -regtest and -testnet.\n"); return; }