aboutsummaryrefslogtreecommitdiffstats
path: root/src/znot.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-03-03 23:02:59 +0100
committerMattias Andrée <maandree@kth.se>2016-03-03 23:02:59 +0100
commitd6987458f21cf1890045f2606d0f8ec4d2225b44 (patch)
tree90afabbea01b01c4dedcb41748eb534ce04fbf77 /src/znot.c
parentzsets: minor optimisation (diff)
downloadlibzahl-d6987458f21cf1890045f2606d0f8ec4d2225b44.tar.gz
libzahl-d6987458f21cf1890045f2606d0f8ec4d2225b44.tar.bz2
libzahl-d6987458f21cf1890045f2606d0f8ec4d2225b44.tar.xz
Cleanup and fix bug in ztrunc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/znot.c')
-rw-r--r--src/znot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/znot.c b/src/znot.c
index 7f2f021..8504933 100644
--- a/src/znot.c
+++ b/src/znot.c
@@ -13,8 +13,7 @@ znot(z_t a, z_t b)
}
bits = zbits(b);
- if (a != b)
- zset(a, b);
+ SET(a, b);
SET_SIGNUM(a, -zsignum(a));
for (n = a->used; n--;)