diff options
author | Richard Braun <rbraun@sceen.net> | 2017-05-31 23:51:54 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-05-31 23:53:01 +0200 |
commit | 2bccef4f912ccfc1482b4b77b5a5892a714dd00a (patch) | |
tree | 68739bd47e2920b103ffc52138a676332ed3d01f /arch/x86/machine/atcons.c | |
parent | fdfad361c69a29ffb1d8add4bc5506436288b95f (diff) |
kern/console: optimize interrupt handling
Diffstat (limited to 'arch/x86/machine/atcons.c')
-rw-r--r-- | arch/x86/machine/atcons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/machine/atcons.c b/arch/x86/machine/atcons.c index c4c48069..223298c4 100644 --- a/arch/x86/machine/atcons.c +++ b/arch/x86/machine/atcons.c @@ -50,7 +50,7 @@ atcons_setup(void) } void -atcons_intr(char c) +atcons_intr(const char *s) { - console_intr(&atcons_console, c); + console_intr(&atcons_console, s); } |