Skip to content

Commit c886f5b

Browse files
committed
log: add missing newline on warning
1 parent aea75e7 commit c886f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CL/pocl_debug.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ void pocl_debug_messages_setup(const char *debug) {
120120
else if (strncmp(ptr, "err", 3) == 0)
121121
pocl_debug_messages_filter |= POCL_DEBUG_FLAG_ERROR;
122122
else
123-
POCL_MSG_WARN("Unknown token in POCL_DEBUG env var: %s", ptr);
123+
POCL_MSG_WARN ("Unknown token in POCL_DEBUG env var: %s\n", ptr);
124124

125125
ptr = strtok(NULL, ",");
126126
}

0 commit comments

Comments
 (0)