X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fff-binary.h;h=ce015a3ba8d5844bf4de2af9410df525870eb193;hb=a6368763d08042207963c941b1c52b5fafcb0cb3;hp=0dff045043f737747da13708427e3f35ed49b258;hpb=a4f8b029b86d2ca1612a9c2e2795ccea27b15276;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)