From 31f3c2f5b35ac44d921fe4bb5a4586b4115bcb3a Mon Sep 17 00:00:00 2001 From: john30 Date: Sun, 2 Jul 2017 10:10:55 +0200 Subject: [PATCH] formatting --- src/lib/utils/rotatefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils/rotatefile.cpp b/src/lib/utils/rotatefile.cpp index af24c3f0..7ed6ea14 100644 --- a/src/lib/utils/rotatefile.cpp +++ b/src/lib/utils/rotatefile.cpp @@ -82,7 +82,7 @@ void RotateFile::write(const unsigned char* value, const size_t size, const bool fwrite(value, (streamsize)size, 1, m_stream); m_fileSize += size; m_flushSize += size; - if (m_flushSize>16) { + if (m_flushSize > 16) { fflush(m_stream); m_flushSize = 0; }