ldlinux: Use signed char consistently
authorMatt Fleming <matt.fleming@intel.com>
Tue, 3 Apr 2012 09:48:52 +0000 (10:48 +0100)
committerMatt Fleming <matt.fleming@intel.com>
Tue, 17 Apr 2012 09:58:34 +0000 (10:58 +0100)
commitc23ac08d9e3c1582906ca4f412effdb56fe19b37
treebdddc3eb4f46d74e884a7699fabd2cf3908418cc
parent8d2c8de3a3bcc969e45716649583bf5f62936379
ldlinux: Use signed char consistently

In get_key() we use unsigned chars but seem to use signed chars in
other functions. There's no real reason to use unsigned chars so let's
be consistent. This also eliminates the following warnings,

get_key.c: In function ‘get_key’:
get_key.c:187:2: warning: pointer targets in passing argument 1 of ‘get_key_decode’ differ in signedness
get_key.c:129:5: note: expected ‘char *’ but argument is of type ‘unsigned char *’
serirq.c:29:29: warning: pointer targets in initialization differ in signedness
serirq.c:30:29: warning: pointer targets in initialization differ in signedness

Signed-off-by: Matt Fleming <matt.fleming@intel.com>
com32/elflink/ldlinux/get_key.c
core/include/bios.h
core/serirq.c