diff options
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 7d866d6..8ad8eeb 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -4179,7 +4179,7 @@ check_lang_option (option, lang_option) -fpack-struct. */ /* An exact match is OK */ - if (strlen (option) == len) + if ((int) strlen (option) == len) return 1; /* If it is not an -f or -W option allow the match */ |