Commit 21789816 by Neil Booth Committed by Neil Booth

* opts.c (wrap_help): Use unsigned int, not size_t.

From-SVN: r69106
parent e55dc371
2003-07-08 Neil Booth <neil@daikokuya.co.uk>
* opts.c (wrap_help): Use unsigned int, not size_t.
2003-07-08 Stephane Carrez <stcarrez@nerim.fr>
* config/m68hc11/m68hc11.h (HAVE_AS_DWARF2_DEBUG_LINE): Don't define
......
......@@ -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++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment