diff options
author | Pavel TvrdĂk <pawel.tvrdik@gmail.cz> | 2015-05-19 08:53:34 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2015-06-08 02:24:08 +0200 |
commit | ae80a2de95d3d3c153ce20b90c9d8757d02cb33d (patch) | |
tree | be0c9427556557ff5b06b0250bc64ff33062199e /lib/checksum.h | |
parent | e348ef01b433e06888310c1098a05291034a856c (diff) |
unsigned [int] -> uint
Diffstat (limited to 'lib/checksum.h')
-rw-r--r-- | lib/checksum.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/checksum.h b/lib/checksum.h index 81515543..16cbcce5 100644 --- a/lib/checksum.h +++ b/lib/checksum.h @@ -14,7 +14,7 @@ * fragments finished by NULL pointer. */ -int ipsum_verify(void *frag, unsigned len, ...); -u16 ipsum_calculate(void *frag, unsigned len, ...); +int ipsum_verify(void *frag, uint len, ...); +u16 ipsum_calculate(void *frag, uint len, ...); #endif |