2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>

* libchip/network/i82586.c: Fix warnings for ctype methods.
This commit is contained in:
Joel Sherrill
2010-03-11 19:13:04 +00:00
parent 391b4dda25
commit 8a3a92dcfb
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* libchip/network/i82586.c: Fix warnings for ctype methods.
2010-02-19 Chris Johns <chrisj@rtems.org>
* libchip/ide/ide_controller.c: Create the devices as block

View File

@@ -246,7 +246,7 @@ char *bitmask_snprintf(unsigned long value, const char *format, char *buf, int b
while (*format)
{
if (value & 0x80000000)
while (isalnum(*format))
while (isalnum((int)*format))
*b++ = *format;
else
*b++ = '0';