diff options
author | borutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423> | 2011-08-28 19:59:48 +0000 |
---|---|---|
committer | borutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423> | 2011-08-28 19:59:48 +0000 |
commit | ebfceed86a17d5a849ff08b4f5b79d4ea31aca9c (patch) | |
tree | 67a1ef34000987235eb920b0b05cce4e91e292e5 /support/cpp/libcpp/expr.c | |
parent | d5253b25191cc31eb45205f19d17fa7aad616a63 (diff) |
- support/cpp/sdcpp-diagnostic.c, support/cpp/sdcpp.h,
support/cpp/sdcpp-opts.c:
SDCPP synchronized with GCC CPP release version 4.6.1
git-svn-id: https://svn.code.sourceforge.net/p/sdcc/code/trunk/sdcc@6774 4a8a32a2-be11-0410-ad9d-d568d2c75423
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; |