X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fff-binary.h;h=ce015a3ba8d5844bf4de2af9410df525870eb193;hb=5034fae83a7c3560d75ef5c746dcb535d3d97766;hp=0dff045043f737747da13708427e3f35ed49b258;hpb=0192d9f3a127c82b32131d26ed9b5fb5a90db723;p=libucw.git diff --git a/ucw/ff-binary.h b/ucw/ff-binary.h index 0dff0450..ce015a3b 100644 --- a/ucw/ff-binary.h +++ b/ucw/ff-binary.h @@ -59,7 +59,7 @@ * where `NAME` together with `TYPE` can be: * * - `w` for 16-bit unsigned integers stored in sequences of 2 bytes, the `TYPE` is int - * - `l` for 32-bit unsigned integers stored in sequences of 4 bytes, the `TYPE` is uns + * - `l` for 32-bit unsigned integers stored in sequences of 4 bytes, the `TYPE` is uint * - `5` for 40-bit unsigned integers stored in sequences of 5 bytes, the `TYPE` is u64 * - `q` for 64-bit unsigned integers stored in sequences of 8 bytes, the `TYPE` is u64 * @@ -111,7 +111,7 @@ #define FF_ALL(type, name, bits, defendian) FF_ALL_X(type, name, bits, defendian) FF_ALL(int, w, 16, FF_ENDIAN) -FF_ALL(uns, l, 32, FF_ENDIAN) +FF_ALL(uint, l, 32, FF_ENDIAN) FF_ALL(u64, q, 64, FF_ENDIAN) FF_ALL(u64, 5, 40, FF_ENDIAN)