summaryrefslogtreecommitdiffstats
path: root/call/call.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 02:39:22 +0200
committerRalf Baechle <ralf@linux-mips.org>2015-05-02 18:16:06 +0200
commit6276436bfa71fb22c4cb2ff09faa8d75e4c473a1 (patch)
tree85e74bb1a6480609a817d4a074b4d1ff274aea93 /call/call.c
parentcc6d8211189bcd7bb665aa65d97385d0a5821bdc (diff)
Remove pointless return statements at the end of void functions.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'call/call.c')
-rw-r--r--call/call.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/call/call.c b/call/call.c
index 9ad8e41..ec391b2 100644
--- a/call/call.c
+++ b/call/call.c
@@ -1023,8 +1023,6 @@ void writeincom(int mode, t_win * win_in, unsigned char buf[], int bytes)
/* waddnstr(win_in->ptr, buf, bytes); */
wrefresh(win_in->ptr);
-
- return;
}
int getstring(wint * wintab, char text[], char buf[])
@@ -1521,7 +1519,6 @@ void statbits(int mode, char stat, int m)
addch(stat);
attroff(A_REVERSE);
refresh();
- return;
}