Eo: Fixed compilation warning.

Cedric: I love it that you don't test your fixes. :).
This commit is contained in:
Tom Hacohen 2013-03-12 11:21:21 +00:00
parent 26a5cdc63b
commit 1cbcf4e4f8
1 changed files with 2 additions and 2 deletions

View File

@ -1064,9 +1064,9 @@ eo_class_new(const Eo_Class_Description *desc, const Eo_Class *parent, ...)
if (getenv("EO_DEBUG"))
{
fprintf(stderr, "Eo class '%s' will take %d bytes per object.\n",
fprintf(stderr, "Eo class '%s' will take %u bytes per object.\n",
desc->name,
klass->data_offset + EO_ALIGN_SIZE(klass->desc->data_size) + klass->extn_data_size);
(unsigned int) (klass->data_offset + EO_ALIGN_SIZE(klass->desc->data_size) + klass->extn_data_size));
}
va_end(p_list);