aboutsummaryrefslogtreecommitdiff
path: root/src/console/console.c
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-10-14 23:05:08 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-10-14 23:05:08 +0000
commite2ad5ce6978c48218b6367e4d452baaa28aeb820 (patch)
treef5eaefb95e30c30666171785352ddfb206e88c6c /src/console/console.c
parent3287f0b9a1d8471abf3b18696d0d2a9943f32716 (diff)
fixed function prototype for die()
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1675 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/console.c')
-rw-r--r--src/console/console.c2
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);