diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-22 10:03:15 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-02-22 10:03:15 +0000 |
commit | a5079576ae9007fb1ca7ebcc911b5fb035cd2d06 (patch) | |
tree | 70f4014dd37d780dfb45182d26092cb1998d4eec /src/libdatastruct/genset_iter_withcancel.c | |
parent | 49d8fa1058aaf23c29e074b2314492ae40d2f557 (diff) | |
download | skalibs-a5079576ae9007fb1ca7ebcc911b5fb035cd2d06.tar.xz |
Types change: switch libdatastruct to uint32_t
Still needs to be reviewed.
Diffstat (limited to 'src/libdatastruct/genset_iter_withcancel.c')
-rw-r--r-- | src/libdatastruct/genset_iter_withcancel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libdatastruct/genset_iter_withcancel.c b/src/libdatastruct/genset_iter_withcancel.c index fa8074b..a8f9c86 100644 --- a/src/libdatastruct/genset_iter_withcancel.c +++ b/src/libdatastruct/genset_iter_withcancel.c @@ -1,12 +1,13 @@ /* ISC license. */ +#include <stdint.h> #include <errno.h> #include <skalibs/functypes.h> #include <skalibs/genset.h> int genset_iter_withcancel (genset *g, iterfunc_t_ref f, iterfunc_t_ref cancelf, void *stuff) { - unsigned int n = genset_iter(g, f, stuff) ; + uint32_t n = genset_iter(g, f, stuff) ; if (n < g->max) { int e = errno ; |