diff options
Diffstat (limited to 'src/u8c/u32sz.c')
-rw-r--r-- | src/u8c/u32sz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/u8c/u32sz.c b/src/u8c/u32sz.c index d0af24a..ca8b1be 100644 --- a/src/u8c/u32sz.c +++ b/src/u8c/u32sz.c @@ -19,7 +19,7 @@ # include <u8c/seterr.h> # include <u8c/SIZE_C.h> # include <u8c/u32sz.h> -uint_least8_t u8c_u32sz(size_t * const _sz,uint_least32_t * const _u32) { +uint_least8_t u8c_u32sz(size_t * const _sz,uint_least32_t const * const _u32) { assert(_sz != NULL); assert(_u32 != NULL); for(register size_t n = SIZE_C(0x0);n <= SIZE_MAX;n += SIZE_C(0x1)) { |