aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Bottomley <JBottomley@Parallels.com>2013-01-16 12:55:05 +0000
committerJames Bottomley <JBottomley@Parallels.com>2013-01-16 12:55:43 +0000
commit261c98f007572c2824e497dca08d123c562d40e9 (patch)
tree9311b12aff8f8f8f85e086b51bcb5a6ef249fda2
parentfae31c83df689cda5a0b49c334a6d12d62ab86ab (diff)
downloadefitools-261c98f007572c2824e497dca08d123c562d40e9.tar.gz
console: no return from console_reset()
-rw-r--r--include/console.h2
-rw-r--r--lib/console.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/console.h b/include/console.h
index 4f720d3..819650e 100644
--- a/include/console.h
+++ b/include/console.h
@@ -14,6 +14,6 @@ void
console_error(CHAR16 *err, EFI_STATUS);
void
console_alertbox(CHAR16 **title);
-int
+void
console_reset(void);
#define NOSEL 0x7fffffff
diff --git a/lib/console.c b/lib/console.c
index a9bb32b..1aff1d0 100644
--- a/lib/console.c
+++ b/lib/console.c
@@ -374,7 +374,7 @@ console_error(CHAR16 *err, EFI_STATUS status)
console_alertbox(err_arr);
}
-int
+void
console_reset(void)
{
SIMPLE_TEXT_OUTPUT_INTERFACE *co = ST->ConOut;