]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bbuf.c
xtypes: added first shot on unit parser
[libucw.git] / ucw / bbuf.c
index e055afd8c3fc7629768c00923fde6e8022ff9505..36ece2a066794629be17c20a87b50730fa8108ee 100644 (file)
@@ -13,7 +13,7 @@
 #include <stdio.h>
 
 char *
-bb_vprintf_at(bb_t *bb, uint ofs, const char *fmt, va_list args)
+bb_vprintf_at(bb_t *bb, size_t ofs, const char *fmt, va_list args)
 {
   bb_grow(bb, ofs + 1);
   va_list args2;
@@ -44,7 +44,7 @@ bb_vprintf_at(bb_t *bb, uint ofs, const char *fmt, va_list args)
 }
 
 char *
-bb_printf_at(bb_t *bb, uint ofs, const char *fmt, ...)
+bb_printf_at(bb_t *bb, size_t ofs, const char *fmt, ...)
 {
   va_list args;
   va_start(args, fmt);