]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/ff-binary.c
XTypes: CF_XTYPE requires '&' before xt_*, just like most other parameters in CF_...
[libucw.git] / ucw / ff-binary.c
index 47163f29717b5e6b63ad4204d4696552b471cbb9..688d6ae468dfc2ca000874dfb29e738cf14404b9 100644 (file)
@@ -7,9 +7,9 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/fastbuf.h"
-#include "ucw/ff-binary.h"
+#include <ucw/lib.h>
+#include <ucw/fastbuf.h>
+#include <ucw/ff-binary.h>
 
 #define GEN(type, name, size, endian)                          \
 type bget##name##_##endian##_slow(struct fastbuf *f)           \
@@ -29,6 +29,6 @@ void bput##name##_##endian##_##slow(struct fastbuf *f, type x)        \
 #define FF_ALL(type, name, size) GEN(type,name,size,be) GEN(type,name,size,le)
 
 FF_ALL(int, w, 16)
-FF_ALL(uns, l, 32)
+FF_ALL(uint, l, 32)
 FF_ALL(u64, q, 64)
 FF_ALL(u64, 5, 40)