]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bbuf.c
Table: renamed table_col_order[_by_name] -> table_set_col_order[_by_name]
[libucw.git] / ucw / bbuf.c
index 91ec858468e6733fb261c1310cc3c685780088cf..36ece2a066794629be17c20a87b50730fa8108ee 100644 (file)
@@ -32,7 +32,7 @@ bb_vprintf_at(bb_t *bb, size_t ofs, const char *fmt, va_list args)
        }
       while (cnt < 0);
     }
-  else if ((uns)cnt >= bb->len - ofs)
+  else if ((uint)cnt >= bb->len - ofs)
     {
       bb_do_grow(bb, ofs + cnt + 1);
       va_copy(args2, args);