diff options
-rw-r--r-- | sbin/wsconsctl/map_parse.y | 5 | ||||
-rw-r--r-- | sbin/wsconsctl/wsconsctl.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/sbin/wsconsctl/map_parse.y b/sbin/wsconsctl/map_parse.y index 2487d4da17d..e96b521be5d 100644 --- a/sbin/wsconsctl/map_parse.y +++ b/sbin/wsconsctl/map_parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: map_parse.y,v 1.1 2000/07/01 23:52:45 mickey Exp $ */ +/* $OpenBSD: map_parse.y,v 1.2 2001/08/26 17:35:13 deraadt Exp $ */ /* $NetBSD: map_parse.y,v 1.2 1999/02/08 11:08:23 hannken Exp $ */ /*- @@ -195,7 +195,8 @@ keysym_var : T_KEYSYM_VAR = { if (res < 0) yyerror("keysym expected"); $$ = res; - }; + } + ; %% void diff --git a/sbin/wsconsctl/wsconsctl.c b/sbin/wsconsctl/wsconsctl.c index 93627eb82e3..5600de258af 100644 --- a/sbin/wsconsctl/wsconsctl.c +++ b/sbin/wsconsctl/wsconsctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsctl.c,v 1.7 2001/07/15 19:29:04 mickey Exp $ */ +/* $OpenBSD: wsconsctl.c,v 1.8 2001/08/26 17:35:13 deraadt Exp $ */ /* $NetBSD: wsconsctl.c,v 1.2 1998/12/29 22:40:20 hannken Exp $ */ /*- @@ -79,7 +79,7 @@ usage(msg) char *msg; { if (msg != NULL) - fprintf(stderr, "%s: %s\n\n", __progname, msg); + fprintf(stderr, "%s: %s\n", __progname, msg); fprintf(stderr, "usage: %s [-f file] [-n] name ...\n" |