diff --git a/src/log.c b/src/log.c index 5185bb9c3..77eadaa4e 100644 --- a/src/log.c +++ b/src/log.c @@ -100,11 +100,10 @@ void flushWarningLog(void) if (warningBuffer != NULL) { while (s != NULL) { - char * next = strchr(s, '\n'); - if (next != NULL) { - *next = '\0'; - next++; - } + char *next = strchr(s, '\n'); + if (next == NULL) break; + *next = '\0'; + next++; fprintf(stderr, "%s\n", s); s = next; }