* dtable.cc (dtable::extend): Change local variable new_size to size_t
as well. * thread.cc: Fix comment.
This commit is contained in:
@ -74,7 +74,7 @@ set_std_handle (int fd)
|
||||
int
|
||||
dtable::extend (size_t howmuch)
|
||||
{
|
||||
int new_size = size + howmuch;
|
||||
size_t new_size = size + howmuch;
|
||||
fhandler_base **newfds;
|
||||
|
||||
if (new_size > OPEN_MAX_MAX)
|
||||
|
Reference in New Issue
Block a user