rockbox/utils/rk27utils/rkboottool
Uwe Kleine-König bf90197717 rk27xx-utils: fix compiler warning on amd64
sizeof(...) has type size_t which is long unsigned int on amd64, and so
the conversion specifier d without length modifier isn't suitable. There
is the length modifier 'z' for size_t arguments, but this is only
available on Linux. So casting to unsigned long and using 'lu' is the
portable fix.

This fixes:
	rkboottool.c:215: warning: format ‘%d’ expects type ‘int’, but argument 4 has type ‘long unsigned int’
2024-10-27 11:25:51 -04:00
..
Makefile Rockchip rk27xx utils 2011-05-30 21:10:43 +00:00
rkboottool.c rk27xx-utils: fix compiler warning on amd64 2024-10-27 11:25:51 -04:00