aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c9
1 files changed, 4 insertions, 5 deletions
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;
}