Bugfix: use of uninitialised variable that gcc didn't notice.

This commit is contained in:
ragge 1998-06-08 15:04:26 +00:00
parent 65c4c29d59
commit 3c3c83f7ad
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lkc.c,v 1.3 1998/06/07 20:19:12 ragge Exp $ */
/* $NetBSD: lkc.c,v 1.4 1998/06/08 15:04:26 ragge Exp $ */
/*
* Copyright (c) 1998 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -102,7 +102,7 @@ lkc_catch(line, ch)
return 1;
if (hej > 255) {
cp = q_special[c & 255];
cp = q_special[hej & 255];
wsdisplay_kbdinput(wsdisplay_cd.cd_devs[0], cp, strlen(cp));
} else {
c = hej;