aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-05-12 11:45:49 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-05-12 11:46:10 +0200
commit2efe38b8323c77d259bbf87280c5e5e634f3f475 (patch)
treeead7dba1d3d319d3ffc997d8828018cf42f1a6b3 /src/util.cpp
parent5b736ddaa1c1c6ca75412caa89b6b5569dd9601e (diff)
parent326231611bda6808b579ab7286e471c36f62e98c (diff)
downloadbitcoin-2efe38b8323c77d259bbf87280c5e5e634f3f475.tar.xz
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/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 3f0f8be544..80f2193016 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -113,7 +113,7 @@ string strMiscWarning;
bool fLogTimestamps = DEFAULT_LOGTIMESTAMPS;
bool fLogTimeMicros = DEFAULT_LOGTIMEMICROS;
bool fLogIPs = DEFAULT_LOGIPS;
-volatile bool fReopenDebugLog = false;
+volatile sig_atomic_t fReopenDebugLog = false;
CTranslationInterface translationInterface;
/** Init OpenSSL library multithreading support */