mirror of
				https://github.com/webmproject/libwebp.git
				synced 2025-10-30 18:05:36 +01:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user