diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-22 05:46:35 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-22 05:46:35 +0000 |
| commit | 258304056c2e20f416a93b8df9d7eb2ae52ddd49 (patch) | |
| tree | f83a23eb4104d0dc33381fd8a8b7c55683da156a /gcc/cpplib.c | |
| parent | 77d71bdba925ab1eb35a171ab48bdc20de4d1417 (diff) | |
| download | ppe42-gcc-258304056c2e20f416a93b8df9d7eb2ae52ddd49.tar.gz ppe42-gcc-258304056c2e20f416a93b8df9d7eb2ae52ddd49.zip | |
Warning fixes:
* mips.c (gpr_mode): Don't say `static' twice.
* cpplib.c (cpp_handle_option): Don't pass unneeded NULL to cpp_fatal.
* objc/objc-act.c (init_selector): Hide prototype and definition.
* optabs.c (gen_cond_trap): Remove unused variable `icode'.
* regmove.c (copy_src_to_dest): Likewise for `i'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20652 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.c')
| -rw-r--r-- | gcc/cpplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index e29de4a2ab5..0d71490d544 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -6643,7 +6643,7 @@ cpp_handle_option (pfile, argc, argv) push_pending (pfile, "-U", argv[i] + 2); else if (i + 1 == argc) { - cpp_fatal (pfile, "Macro name missing after -U option", NULL); + cpp_fatal (pfile, "Macro name missing after -U option"); return argc; } else |

