1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00

Remove unused argument from printf().

modified:   initkbd.c
This commit is contained in:
Nick Briggs 2017-06-07 20:11:57 -07:00
parent 1b7a7fc6fc
commit 154d07edce

View File

@ -798,7 +798,7 @@ void keyboardtype(fd) int fd;
char errmsg[200];
sprintf(errmsg, "Unsupported keyboard type: %d", type);
printf("%s\n", errmsg);
printf("Configuring keyboard for type-3\n", errmsg);
printf("Configuring keyboard for type-3\n");
SUNLispKeyMap = SUNLispKeyMap_for3;
InterfacePage->devconfig |= KB_SUN3 - MIN_KEYTYPE;
break;