aboutsummaryrefslogtreecommitdiff
path: root/tccpp.c
diff options
context:
space:
mode:
Diffstat (limited to 'tccpp.c')
-rw-r--r--tccpp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tccpp.c b/tccpp.c
index e3c9910..b0f4102 100644
--- a/tccpp.c
+++ b/tccpp.c
@@ -1441,13 +1441,12 @@ static void pragma_parse(TCCState *s1)
next();
tok = TOK_LINEFEED;
} else {
- tcc_warning("unknown #pragma %s", get_tok_str(tok, &tokc));
+ tcc_warning("unknown specifier '%s' in #pragma comment", get_tok_str(tok, &tokc));
}
} else {
tcc_warning("#pragma comment(lib) is ignored");
}
}
-
}
/* is_bof is true if first non space token at beginning of file */