diff options
Diffstat (limited to 'support/cpp/libcpp/expr.c')
-rw-r--r-- | support/cpp/libcpp/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/cpp/libcpp/expr.c b/support/cpp/libcpp/expr.c index 3c36127b5..d9bae17fe 100644 --- a/support/cpp/libcpp/expr.c +++ b/support/cpp/libcpp/expr.c @@ -434,9 +434,9 @@ cpp_classify_number (cpp_reader *pfile, const cpp_token *token) : N_("use of C99 long long integer constant"); if (CPP_OPTION (pfile, c99)) - cpp_warning (pfile, CPP_W_LONG_LONG, message); + cpp_warning (pfile, CPP_W_LONG_LONG, "%s", message); else - cpp_pedwarning (pfile, CPP_W_LONG_LONG, message); + cpp_pedwarning (pfile, CPP_W_LONG_LONG, "%s", message); } result |= CPP_N_INTEGER; |