Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2013-12-01 14:27:16 +0400
committerCorinna Vinschen <corinna@vinschen.de>2013-12-01 14:27:16 +0400
commiteeaa47ef214fa40d00b1fc1cf7e2eba2156f9562 (patch)
tree3ea5f713f44bcdd81ad9bb55cc6aebf28c186d34 /winsup/cygwin/dtable.cc
parentbc54373f85bc5bf1055943dc9bb3a8805f413503 (diff)
* dtable.cc (dtable::extend): Change local variable new_size to size_t
as well. * thread.cc: Fix comment.
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r--winsup/cygwin/dtable.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc
index bbec732a5..3934e008a 100644
--- a/winsup/cygwin/dtable.cc
+++ b/winsup/cygwin/dtable.cc
@@ -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)