Eliminate (void) cast on standalone function calls throughout.

This commit is contained in:
Christopher Faylor
2005-07-06 20:05:03 +00:00
parent dee9edd9ed
commit 0c55f6ed60
41 changed files with 110 additions and 106 deletions

View File

@ -122,7 +122,7 @@ tty_min::kill_pgrp (int sig)
if (p == myself)
killself++;
else
(void) sig_send (p, si);
sig_send (p, si);
}
if (killself)
sig_send (myself, si);
@ -316,7 +316,7 @@ fhandler_termios::line_edit (const char *rptr, int nread, termios& ti)
else if (CCEQ (ti.c_cc[VEOF], c))
{
termios_printf ("EOF");
(void) accept_input ();
accept_input ();
ret = line_edit_input_done;
continue;
}