diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2007-10-23 22:17:45 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-10-23 22:17:45 +0000 |
commit | 0dff6e3fa95ea13f6ee6cb2d4277e83076d81bad (patch) | |
tree | aaf9a4fcab39c9dba0c4dc7457a79fc0d327cf4c /src/devices/device_util.c | |
parent | 643eee07541f10fcc3b34a56dc8bf2cf8d93c649 (diff) | |
download | coreboot-0dff6e3fa95ea13f6ee6cb2d4277e83076d81bad.tar.xz |
fix a whole bunch of warnings. (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2890 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/device_util.c')
-rw-r--r-- | src/devices/device_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/device_util.c b/src/devices/device_util.c index efb1f0f257..c6ef541282 100644 --- a/src/devices/device_util.c +++ b/src/devices/device_util.c @@ -454,7 +454,7 @@ const char *resource_type(struct resource *resource) void report_resource_stored(device_t dev, struct resource *resource, const char *comment) { if (resource->flags & IORESOURCE_STORED) { - unsigned char buf[10]; + char buf[10]; unsigned long long base, end; base = resource->base; end = resource_end(resource); |