From e78ea8b28064181d9081e7ff0143830c4ec37d7f Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 6 Aug 2015 15:34:43 +0100 Subject: Enable warnings to be enabled and generated for unimplemented elements --- src/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/options.h') 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) -- cgit v1.2.3