Skip to content

Commit 9d096f3

Browse files
committed
clang-format
1 parent 6c2920b commit 9d096f3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/SimpleLog.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ int SimpleLog::Impl::logV(SimpleLog::Impl::Severity s, const char* message, va_l
7070
if (disableOutput) {
7171
return 0;
7272
}
73-
73+
7474
char buffer[1024] = "";
7575
size_t len = sizeof(buffer) - 2;
7676
size_t ix = 0;
@@ -180,12 +180,12 @@ int SimpleLog::setLogFile(const char* logFilePath, unsigned long rotateMaxBytes,
180180
pImpl->disableOutput = 0;
181181
if (logFilePath != NULL) {
182182
pImpl->logFilePath = logFilePath;
183-
if (!strcmp(logFilePath,"/dev/null")) {
183+
if (!strcmp(logFilePath, "/dev/null")) {
184184
pImpl->disableOutput = 1;
185185
return 0;
186186
}
187187
pImpl->rotateMaxBytes = rotateMaxBytes;
188-
pImpl->rotateMaxFiles = rotateMaxFiles;
188+
pImpl->rotateMaxFiles = rotateMaxFiles;
189189
if (rotateNow) {
190190
pImpl->rotate();
191191
}

0 commit comments

Comments
 (0)