fsck.c: In function 'check_for_invalid_objects':
fsck.c:513: warning: format '%u' expects type 'unsigned int', but argument 5 has type 'size_t'
/* first count used bytes */
FOR_EACH_MAPPED_COLUMN(i, t, cd) {
loss[i] = t->columns[i].data_map.size;
- DEBUG_LOG("column %i data map: %u bytes\n", i,
+ DEBUG_LOG("column %i data map: %zu bytes\n", i,
t->columns[i].data_map.size);
for (j = 0; j < t->num_rows; j++) {
struct osl_object obj;