forked from Imagelibrary/rtems
2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* libchip/network/i82586.c: Fix warnings for ctype methods.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user