goto out;
}
if (t->ret != sizeof(buf)) {
- PARA_NOTICE_LOG("short read (%d bytes, expected %d)\n",
+ PARA_NOTICE_LOG("short read (%d bytes, expected %lu)\n",
t->ret, sizeof(buf));
t->ret = 1;
goto out;
pos = AFTROW_PATH_OFFSET + path_len;
PARA_DEBUG_LOG("size: %zu, afhi starts at %d\n", size, pos);
- PARA_DEBUG_LOG("last afhi byte: %p, pos %d\n", buf + pos + afhi_size - 1,
+ PARA_DEBUG_LOG("last afhi byte: %p, pos %zu\n", buf + pos + afhi_size - 1,
pos + afhi_size - 1);
write_u16(buf + AFTROW_AFHI_OFFSET_POS, pos);
save_afhi(afhi, buf + pos);
}
if (!add_mask && !del_mask)
return -E_ATTR_SYNTAX;
- PARA_DEBUG_LOG("masks: %llx:%llx\n", add_mask, del_mask);
+ PARA_DEBUG_LOG("masks: %llx:%llx\n",(long long unsigned)add_mask,
+ (long long unsigned)del_mask);
for (; p < (char *)query->data + query->size; p += len + 1) { /* TODO: fnmatch */
struct afs_info old_afsi, new_afsi;
struct osl_row *aft_row;
PARA_NOTICE_LOG("no admissible files\n");
return;
}
- PARA_NOTICE_LOG("last_played mean: %lli, last_played sigma: %lli\n",
- statistics.last_played_sum / n, int_sqrt(statistics.last_played_qd / n));
- PARA_NOTICE_LOG("num_played mean: %lli, num_played sigma: %lli\n",
- statistics.num_played_sum / n, int_sqrt(statistics.num_played_qd / n));
+ PARA_NOTICE_LOG("last_played mean: %lli, last_played sigma: %llu\n",
+ (long long int)(statistics.last_played_sum / n),
+ (long long unsigned)int_sqrt(statistics.last_played_qd / n));
+ PARA_NOTICE_LOG("num_played mean: %lli, num_played sigma: %llu\n",
+ (long long int)statistics.num_played_sum / n,
+ (long long unsigned)int_sqrt(statistics.num_played_qd / n));
}
/**
const char *b = buf;
while (size) {
ssize_t ret = para_write(fd, b, size);
- PARA_DEBUG_LOG("ret: %d\n", ret);
+ PARA_DEBUG_LOG("ret: %zd\n", ret);
if (ret < 0)
return ret;
b += ret;
ret = -E_SHORT_TABLE;
if (map->size < offset + MIN_IDX_COLUMN_DESCRIPTION_SIZE) {
- PARA_ERROR_LOG("map size = %u < %u = offset + min desc size\n",
+ PARA_ERROR_LOG("map size = %zu < %u = offset + min desc size\n",
map->size, offset + MIN_IDX_COLUMN_DESCRIPTION_SIZE);
goto err;
}
obj->size, offset);
return -E_INVALID_OBJECT;
}
- PARA_DEBUG_LOG("mapped obj row_num: %u, col %u, size: %d\n", row_num,
+ PARA_DEBUG_LOG("mapped obj row_num: %u, col %u, size: %zu\n", row_num,
col_num, obj->size);
return 1;
}
if (!t->num_mapped_columns)
return 1;
filename = index_filename(t->desc);
- PARA_DEBUG_LOG("appending %zu bytes\n", t->index_entry_size);
+ PARA_DEBUG_LOG("appending %u bytes\n", t->index_entry_size);
ret = append_file(filename, NULL, 0, new_index_entry,
t->index_entry_size, NULL);
free(filename);
goto out;
}
if (sf & OSL_FIXED_SIZE) {
- PARA_DEBUG_LOG("fixed size. need: %d, have: %d\n",
+ PARA_DEBUG_LOG("fixed size. need: %zu, have: %d\n",
objects[i].size, cd->data_size);
ret = -E_BAD_DATA_SIZE;
if (objects[i].size != cd->data_size)