Remove some more unneeded 'return;'s throughout.

This commit is contained in:
Christopher Faylor
2005-09-14 14:27:56 +00:00
parent 18ea7328a7
commit 3aca3cb636
18 changed files with 4 additions and 24 deletions

View File

@@ -912,7 +912,6 @@ fhandler_tty_slave::read (void *ptr, size_t& len)
}
termios_printf ("%d=read(%x, %d)", totalread, ptr, len);
len = (size_t) totalread;
return;
}
int
@@ -1283,7 +1282,6 @@ void __stdcall
fhandler_pty_master::read (void *ptr, size_t& len)
{
len = (size_t) process_slave_output ((char *) ptr, len, pktmode);
return;
}
int