summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2017-07-29 10:42:53 +0100
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2017-07-29 10:42:53 +0100
commit2914498b291ea0ca432a320004aa3d2499e50eb5 (patch)
tree4ed6425b15f142e1318acb9856f288ec7df211fa /src/core
parent08dc6734b90389c357c73544023ec614e43b0860 (diff)
downloadirssi-2914498b291ea0ca432a320004aa3d2499e50eb5.zip
Consistency: use FALSE instead of 0.
Signed-off-by: Edward Tomasz Napierala <trasz@FreeBSD.org>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/rawlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/rawlog.c b/src/core/rawlog.c
index 43f140f3..2ec155fa 100644
--- a/src/core/rawlog.c
+++ b/src/core/rawlog.c
@@ -144,7 +144,7 @@ void rawlog_close(RAWLOG_REC *rawlog)
if (rawlog->logging) {
write_buffer_flush();
close(rawlog->handle);
- rawlog->logging = 0;
+ rawlog->logging = FALSE;
}
}