aboutsummaryrefslogtreecommitdiffstats
path: root/unlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'unlist.c')
-rw-r--r--unlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unlist.c b/unlist.c
index 192fad0..92b7f8f 100644
--- a/unlist.c
+++ b/unlist.c
@@ -17,7 +17,7 @@ main(void)
size_t i, n;
for (i = 0, n = 10; i < n; i++)
- buf[i] = i;
+ buf[i] = (char)i;
LIBSIMPLE_UNLIST(buf, 4, &n);
LIBSIMPLE_UNLIST(buf, 9 - 1, &n);
LIBSIMPLE_UNLIST(buf, 6 - 1, &n);
@@ -31,7 +31,7 @@ main(void)
assert(buf[6] == 8);
for (i = 0, n = 10; i < n; i++)
- intarray[i] = i;
+ intarray[i] = (int)i;
LIBSIMPLE_UNLIST(intarray, 4, &n);
LIBSIMPLE_UNLIST(intarray, 9 - 1, &n);
LIBSIMPLE_UNLIST(intarray, 6 - 1, &n);