aboutsummaryrefslogtreecommitdiffstats
path: root/src/zlsb.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-03-01 19:41:04 +0100
committerMattias Andrée <maandree@kth.se>2016-03-01 19:41:04 +0100
commit465749ec6de871ae244ebe6d3264c71eeb728fcc (patch)
treed14bffe84132f80fc8edd266287bec3dff224e84 /src/zlsb.c
parentzsetu: change macro from CHARS_PER_TYPE to SIZE_MULTIPLE (diff)
downloadlibzahl-465749ec6de871ae244ebe6d3264c71eeb728fcc.tar.gz
libzahl-465749ec6de871ae244ebe6d3264c71eeb728fcc.tar.bz2
libzahl-465749ec6de871ae244ebe6d3264c71eeb728fcc.tar.xz
Add typedef zahl_char_t for internal use
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/zlsb.c')
-rw-r--r--src/zlsb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zlsb.c b/src/zlsb.c
index 2952a05..d63752e 100644
--- a/src/zlsb.c
+++ b/src/zlsb.c
@@ -6,7 +6,7 @@ size_t
zlsb(z_t a)
{
size_t i = 0;
- uint32_t x;
+ zahl_char_t x;
if (zzero(a)) {
return SIZE_MAX;
}