aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2016-05-12 11:45:49 +0200
committerWladimir J. van der Laan <[email protected]>2016-05-12 11:46:10 +0200
commit2efe38b8323c77d259bbf87280c5e5e634f3f475 (patch)
treeead7dba1d3d319d3ffc997d8828018cf42f1a6b3 /src/init.cpp
parentMerge #8041: [qa] Fix bip9-softforks blockstore issue (diff)
parentfReopenDebugLog and fRequestShutdown should be type sig_atomic_t (diff)
downloaddiscoin-2efe38b8323c77d259bbf87280c5e5e634f3f475.tar.xz
discoin-2efe38b8323c77d259bbf87280c5e5e634f3f475.zip
Merge #8004: signal handling: fReopenDebugLog and fRequestShutdown should be type sig_atomic_t
3262316 fReopenDebugLog and fRequestShutdown should be type sig_atomic_t (Chirag Davé)
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index a46cc52a8..d19ca530b 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -123,7 +123,7 @@ static const char* FEE_ESTIMATES_FILENAME="fee_estimates.dat";
// shutdown thing.
//
-volatile bool fRequestShutdown = false;
+volatile sig_atomic_t fRequestShutdown = false;
void StartShutdown()
{