diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-02-08 17:07:29 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-02-08 17:07:29 -0500 |
commit | e07e18e9867db5744738df6427aeee24c0638184 (patch) | |
tree | c4b804334739992ed2cf8d39ee90a35143de2c2f /src/output.c | |
parent | 71f036d6e31b6281f05a7ea3a9f3105891495c97 (diff) | |
download | seabios-hppa-e07e18e9867db5744738df6427aeee24c0638184.zip seabios-hppa-e07e18e9867db5744738df6427aeee24c0638184.tar.gz seabios-hppa-e07e18e9867db5744738df6427aeee24c0638184.tar.bz2 |
Minor - rename BX_PANIC to panic.
Diffstat (limited to 'src/output.c')
-rw-r--r-- | src/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output.c b/src/output.c index 63aec9d..2e6246b 100644 --- a/src/output.c +++ b/src/output.c @@ -224,7 +224,7 @@ bvprintf(u16 action, const char *fmt, va_list args) } void -BX_PANIC(const char *fmt, ...) +panic(const char *fmt, ...) { if (CONFIG_DEBUG_LEVEL) { va_list args; |