wicdec: silence a format warning

from x86_64-w64-mingw32-gcc

examples/wicdec.c: In function ‘ExtractICCP’:
examples/wicdec.c:131:21: warning: format ‘%u’ expects argument of type
‘unsigned int’, but argument 4 has type ‘size_t’ [-Wformat]

Change-Id: I6642dae62265a2276ae9ac96dd8ce6f1e2d37ca5
(cherry picked from commit ffae9f31e8)
This commit is contained in:
James Zern 2013-06-14 18:44:59 -07:00
parent ad9e42a6fe
commit 2e377b53b0

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;