diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 2005-12-13 06:01:28 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 2005-12-13 06:01:28 +0000 |
commit | 0cbc971335254de4fe1790983eca3b99bc50012a (patch) | |
tree | c5e1196f45ed833bd5dacb99cce1b9a379847d0c /usr.bin/mg/main.c | |
parent | 28a23b22ee1dba99041e501bb64afdc747e6670f (diff) |
More name-clash delinting
Diffstat (limited to 'usr.bin/mg/main.c')
-rw-r--r-- | usr.bin/mg/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mg/main.c b/usr.bin/mg/main.c index 049cbc26881..00325530e2e 100644 --- a/usr.bin/mg/main.c +++ b/usr.bin/mg/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.47 2005/11/20 18:47:11 kjell Exp $ */ +/* $OpenBSD: main.c,v 1.48 2005/12/13 06:01:27 kjell Exp $ */ /* This file is in the public domain. */ @@ -140,7 +140,7 @@ notnum: eerase(); #endif /* !NO_DPROMPT */ if (winch_flag) { - refresh(0, 0); + redraw(0, 0); winch_flag = 0; } update(); @@ -152,7 +152,7 @@ notnum: break; case ABORT: ewprintf("Quit"); - /* and fall through */ + /* FALLTHRU */ case FALSE: default: ttbeep(); |