diff options
-rw-r--r-- | xen/console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/console.c b/xen/console.c index 9e8db8f8..aed63cb5 100644 --- a/xen/console.c +++ b/xen/console.c @@ -116,8 +116,8 @@ static void hypcnintr(int unit, spl_t spl, void *ret_addr, void *regs) { mb(); console->in_cons++; #if MACH_KDB - if (c == (char)'£') { - printf("£ pressed\n"); + if (c == (char)0xA3) { + printf("pound pressed\n"); kdb_kintr(); continue; } |