summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--glob.c2
-rw-r--r--stream.c2
-rw-r--r--sysif.c6
4 files changed, 16 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ddfd2e3..b07d3f72 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2015-08-07 Kaz Kylheku <kaz@kylheku.com>
+ 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.
+
+2015-08-07 Kaz Kylheku <kaz@kylheku.com>
+
C++ static forward issue.
* lib.h (static_forward, static_def): New macros
diff --git a/glob.c b/glob.c
index cfdb23f5..58b0d0e9 100644
--- a/glob.c
+++ b/glob.c
@@ -60,7 +60,7 @@ val glob_wrap(val pattern, val flags, val errfunc)
s_errfunc ? errfunc_thunk : 0, &gl);
{
- int i;
+ size_t i;
list_collect_decl (out, ptail);
for (i = 0; i < gl.gl_pathc; i++)
diff --git a/stream.c b/stream.c
index cf5e2e8e..24620baf 100644
--- a/stream.c
+++ b/stream.c
@@ -285,7 +285,7 @@ val make_null_stream(void)
{
struct strm_base *s = coerce(struct strm_base *, chk_malloc(sizeof *s));
strm_base_init(s);
- return cobj(convert(mem_t *, s), stream_s, &null_ops.cobj_ops);
+ return cobj(coerce(mem_t *, s), stream_s, &null_ops.cobj_ops);
}
struct stdio_handle {
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)