diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-10-14 23:05:08 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-10-14 23:05:08 +0000 |
commit | e2ad5ce6978c48218b6367e4d452baaa28aeb820 (patch) | |
tree | f5eaefb95e30c30666171785352ddfb206e88c6c | |
parent | 3287f0b9a1d8471abf3b18696d0d2a9943f32716 (diff) | |
download | coreboot-e2ad5ce6978c48218b6367e4d452baaa28aeb820.tar.xz |
fixed function prototype for die()
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1675 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/console/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/console.c b/src/console/console.c index 7a99cd49f3..7f97b5c95f 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -91,7 +91,7 @@ void post_code(uint8_t value) } /* Report a fatal error */ -void die(char *msg) +void die(const char *msg) { printk_emerg("%s", msg); post_code(0xff); |