summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-07 22:32:49 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-07 22:32:49 -0700
commit6e05502064a0a53a6cd91382fd8a1a1711b8a837 (patch)
treebce8fe2f726c77b15306777c577d24979c13c759 /sysif.c
parent2c903943d95b6af00a4819ac03ec5f010ba91076 (diff)
downloadtxr-6e05502064a0a53a6cd91382fd8a1a1711b8a837.tar.gz
txr-6e05502064a0a53a6cd91382fd8a1a1711b8a837.tar.bz2
txr-6e05502064a0a53a6cd91382fd8a1a1711b8a837.zip
C++ upkeep: conversions, clashes, warnings.
* glob.c (glob_wrap): Fix signed/unsigned comparison. * stream.c (make_null_stream): Fix convert beign used where coerce is needed. * sysif.c (dup_wrap): Fix use of C++ new keyword.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysif.c b/sysif.c
index 1be1903d..f8360a69 100644
--- a/sysif.c
+++ b/sysif.c
@@ -473,11 +473,11 @@ static val wifcontinued(val status)
}
#endif
-static val dup_wrap(val old, val new)
+static val dup_wrap(val old, val neu)
{
- if (missingp(new))
+ if (missingp(neu))
return num(dup(c_num(old)));
- return num(dup2(c_num(old), c_num(new)));
+ return num(dup2(c_num(old), c_num(neu)));
}
static val exec_wrap(val file, val args_opt)