From 7cc6305588acea9c7960abaacf823d62f798f5ba Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 19 Oct 2011 23:31:56 +0200 Subject: Do not cast unused return values to void A small style fix that removes all remaining "(void)" casts. Using these isn't encouraged in GNU coding guidelines and doesn't serve a certain purpose, except for satisfying a few static code analysis tools. We already nuked some of these in previous patches, but this semantic patch should fix what's left: @@ identifier func; @@ - (void)func ( + func ( ...); Long lines were re-formatted manually. Signed-off-by: Lukas Fleischer --- src/sigs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sigs.c') diff --git a/src/sigs.c b/src/sigs.c index a5f7e54..c9c90f0 100644 --- a/src/sigs.c +++ b/src/sigs.c @@ -61,7 +61,7 @@ generic_hdlr (int sig) case SIGWINCH: resize = 1; clearok (curscr, TRUE); - (void)ungetch (KEY_RESIZE); + ungetch (KEY_RESIZE); break; case SIGTERM: if (unlink (path_cpid) != 0) -- cgit v1.2.3-54-g00ecf