Merge "wicdec: silence a format warning"

This commit is contained in:
pascal massimino 2013-06-17 14:45:01 -07:00 committed by Gerrit Code Review
commit 5130770cd3

View File

@ -128,7 +128,7 @@ static HRESULT ExtractICCP(IWICImagingFactory* const factory,
&size));
if (SUCCEEDED(hr) && size != iccp->size) {
fprintf(stderr, "Warning! ICC profile size (%u) != expected (%u)\n",
size, iccp->size);
size, (uint32_t)iccp->size);
iccp->size = size;
}
break;