]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/ff-binary.h
Merge remote-tracking branch 'origin/master'
[libucw.git] / ucw / ff-binary.h
index 0dff045043f737747da13708427e3f35ed49b258..ce015a3ba8d5844bf4de2af9410df525870eb193 100644 (file)
@@ -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
  *
 #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)