aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-04-08 16:22:14 +0200
committerMattias Andrée <maandree@kth.se>2016-04-08 16:22:14 +0200
commit22dc2cc19a3c1e127bc75565980dc7f172dcff52 (patch)
tree7e93ae92df2c41df713de12cb3b8d51445613bb1 /test.c
parentSome improvements: (diff)
downloadlibzahl-22dc2cc19a3c1e127bc75565980dc7f172dcff52.tar.gz
libzahl-22dc2cc19a3c1e127bc75565980dc7f172dcff52.tar.bz2
libzahl-22dc2cc19a3c1e127bc75565980dc7f172dcff52.tar.xz
Fix warnings (that were not turned on by default)
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'test.c')
-rw-r--r--test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.c b/test.c
index bcb6815..4e26734 100644
--- a/test.c
+++ b/test.c
@@ -297,7 +297,7 @@ main(void)
zsetu(b, 0);
assert(zcmp(a, b), != 0);
n = zsave(a, buf);
- assert(n, > 0);
+ assert(n > 0, > 0);
assert_zu(zload(b, buf), n);
assert(zcmp(a, b), == 0);