Skip to content

Commit 342f0f0

Browse files
committed
procevent.c: fix inconsistent debug message format
All other debug messages use the `%s: %d, ` format. Note that by default this line is not actually compiled (unless `DEBUG_PRCTL` is defined). Added on commit d72a43a ("firemon fixes", 2016-02-29). Kind of relates to #6792.
1 parent 0d122e8 commit 342f0f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firemon/procevent.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ printf("start=#%s#, ptr=#%s#, flip rv %d\n", start, ptr, rv);
153153
fclose(fp);
154154
free(file);
155155
#ifdef DEBUG_PRCTL
156-
printf("%s: %d: return %d\n", __FUNCTION__, __LINE__, rv);
156+
printf("%s: %d, return %d\n", __FUNCTION__, __LINE__, rv);
157157
#endif
158158
return rv;
159159
}

0 commit comments

Comments
 (0)