diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-18 07:29:10 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-18 07:29:10 +0000 |
commit | ca8f385a7d2fb75443a0d5ea69e368f0a8c466c2 (patch) | |
tree | 63b6ddf492e99b015dbb5f770efa977f31b7259b /gcc/cppmain.c | |
parent | 88d875a5f8a7e25b027cb42f844605c791ded120 (diff) | |
download | ppe42-gcc-ca8f385a7d2fb75443a0d5ea69e368f0a8c466c2.tar.gz ppe42-gcc-ca8f385a7d2fb75443a0d5ea69e368f0a8c466c2.zip |
Warning fixes:
* cccp.c (default_include): Initialize structure memebers.
(pass_thru_directive): Change the type of 'keyword_length' to int.
(main): Cast `bindtextdomain' and `textdomain' to (void).
* collect2.c (main): Likewise.
* cppmain.c (main): Likewise.
* gcc.c (main): Likewise.
* gcov.c (main): Likewise.
* protoize.c (main): Likewise.
* toplev.c (main): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25839 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppmain.c')
-rw-r--r-- | gcc/cppmain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppmain.c b/gcc/cppmain.c index 042993220f0..5e3ed90f5b3 100644 --- a/gcc/cppmain.c +++ b/gcc/cppmain.c @@ -72,8 +72,8 @@ main (argc, argv) #ifdef HAVE_LC_MESSAGES setlocale (LC_MESSAGES, ""); #endif - bindtextdomain (PACKAGE, localedir); - textdomain (PACKAGE); + (void) bindtextdomain (PACKAGE, localedir); + (void) textdomain (PACKAGE); cpp_reader_init (&parse_in); parse_in.opts = opts; |