summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h
index 85f107e..02674b7 100644
--- a/src/options.h
+++ b/src/options.h
@@ -32,7 +32,7 @@ enum opt_warnings {
#define WARN(flags, msg, args...) do { \
if ((options->warnings & flags) != 0) { \
- fprintf(stderr, "%s: warning:"msg"\n", __func__, ## args); \
+ fprintf(stderr, "%s: warning: "msg"\n", __func__, ## args); \
} \
} while(0)