From ebfceed86a17d5a849ff08b4f5b79d4ea31aca9c Mon Sep 17 00:00:00 2001 From: borutr Date: Sun, 28 Aug 2011 19:59:48 +0000 Subject: - 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 --- support/cpp/libcpp/expr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'support/cpp/libcpp/expr.c') 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; -- cgit v1.2.3