aboutsummaryrefslogtreecommitdiffstats
path: root/src/zsetu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zsetu.c')
-rw-r--r--src/zsetu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zsetu.c b/src/zsetu.c
index 385403c..dd1be17 100644
--- a/src/zsetu.c
+++ b/src/zsetu.c
@@ -18,7 +18,7 @@ zsetu(z_t a, unsigned long long int b)
SET_SIGNUM(a, 1);
a->used = 0;
while (b) {
- a->chars[a->used++] = (uint32_t)b;
+ a->chars[a->used++] = (zahl_char_t)b;
b >>= BITS_PER_CHAR;
}
}