diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-08 21:36:34 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-08 21:36:34 +0000 |
commit | a81209629fbaf71c855f4d9c386ebeafcae0281c (patch) | |
tree | b05b66e082a8ee1da6fb50f40b1c4141da005e59 /gcc/opts.c | |
parent | bb76897904bfdd3f1fce6c57db5047d0755384f5 (diff) | |
download | gcc-a81209629fbaf71c855f4d9c386ebeafcae0281c.tar.gz |
* opts.c (wrap_help): Use unsigned int, not size_t.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69106 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/opts.c b/gcc/opts.c index ec8af200406..052703fd94e 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1526,8 +1526,8 @@ print_help (void) static void wrap_help (const char *help, const char *item, size_t item_width) { - const size_t columns = 80, col_width = 27; - size_t remaining, room, len; + const unsigned int columns = 80, col_width = 27; + unsigned int remaining, room, len; remaining = strlen (help); @@ -1538,7 +1538,7 @@ wrap_help (const char *help, const char *item, size_t item_width) if (room < len) { - size_t i; + unsigned int i; for (i = 0; help[i]; i++) { |