Fixed format specifiers.

This commit is contained in:
Florian Pose 2012-12-06 13:53:38 +01:00
parent 4fdd56e597
commit 7792281a72
1 changed files with 2 additions and 2 deletions

View File

@ -178,8 +178,8 @@ ec_request_state_t ecrt_voe_handler_execute(ec_voe_handler_t *voe)
if (data.size) { // new data waiting to be copied
if (voe->mem_size < data.size) {
fprintf(stderr, "Received %u bytes do not fit info VoE data"
" memory (%u bytes)!\n", data.size, voe->mem_size);
fprintf(stderr, "Received %zu bytes do not fit info VoE data"
" memory (%zu bytes)!\n", data.size, voe->mem_size);
return EC_REQUEST_ERROR;
}