From dd9977e9d827caaa0712c625804cade660dd5beb Mon Sep 17 00:00:00 2001 From: ghazi Date: Sun, 19 Nov 2000 13:15:51 +0000 Subject: Warning fixes: * builtins.c (c_getstr): Constify variable. * gmon-sol2.c (_mcleanup): Comment out #endif labels. * conflict.c (const_conflict_graph_arc): New typedef. (arc_hash, arc_eq): Avoid needlessly casting away const-ness. * cppmacro.c (builtin_macro): Likewise. * dwarf2out.c (output_comp_unit): Constify variable. * fix-header.c (v_fatal): Add ATTRIBUTE_PRINTF. * protoize.c (IS_SAME_PATH_CHAR): Use TOUPPER, not toupper. * ssa.c (ssa_rename_from_hash_function): Avoid needlessly casting away const-ness. * tradcpp.c (rescan, do_line, macroexpand, macarg): Use ISALNUM/ISDIGIT/ISPRINT, not isalnum/isdigit/isprint. * varasm.c (const_str_htab_hash, const_str_htab_eq, compare_constant_1, record_constant_1): Constify. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37565 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/fix-header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/fix-header.c') diff --git a/gcc/fix-header.c b/gcc/fix-header.c index 3741a138333..be377de6b7a 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -77,7 +77,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "scan.h" #include "cpplib.h" -static void v_fatal PARAMS ((const char *, va_list)) ATTRIBUTE_NORETURN; +static void v_fatal PARAMS ((const char *, va_list)) ATTRIBUTE_PRINTF (1,0) ATTRIBUTE_NORETURN; static void fatal PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; sstring buf; -- cgit v1.2.1