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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2014-11-22 04:39:49 +0300
committerZoltan Varga <vargaz@gmail.com>2014-11-22 04:39:49 +0300
commitb836476666b7ab74116d29f4902e12670c3eb9eb (patch)
treefd20a5fa6c31c098f702aacade681be83f49b595 /eglib
parentcd9f3b5859bce24cc00f3620544bde581054a8dd (diff)
[runtime] Remove another getdtablesize () reference.
Diffstat (limited to 'eglib')
-rw-r--r--eglib/src/gspawn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eglib/src/gspawn.c b/eglib/src/gspawn.c
index af629c1947e..449a724be9d 100644
--- a/eglib/src/gspawn.c
+++ b/eglib/src/gspawn.c
@@ -438,7 +438,7 @@ g_spawn_async_with_pipes (const gchar *working_directory,
}
if ((flags & G_SPAWN_LEAVE_DESCRIPTORS_OPEN) != 0) {
- for (i = getdtablesize () - 1; i >= 3; i--)
+ for (i = g_getdtablesize () - 1; i >= 3; i--)
close (i);
}