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

@ -103,7 +103,6 @@ fhandler_virtual::seekdir (DIR * dir, _off64_t loc)
{
dir->__flags |= dirent_saw_dot | dirent_saw_dot_dot;
dir->__d_position = loc;
return;
}
void
@ -111,7 +110,6 @@ fhandler_virtual::rewinddir (DIR * dir)
{
dir->__d_position = 0;
dir->__flags |= dirent_saw_dot | dirent_saw_dot_dot;
return;
}
int