mirror of https://github.com/ArduPilot/ardupilot
c82f28f35a
../../Tools/CPUInfo/CPUInfo.cpp:21:54: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long unsigned int’ [-Wformat=] hal.console->printf("char : %d\n", sizeof(char)); ^ And so on. Ideally for sizeof() which returns size_t we would use %zu, but that's not implemented by our version of printf. So use %lu which should be ok in all of our boards. |
||
---|---|---|
.. | ||
CPUInfo.cpp | ||
Makefile | ||
make.inc | ||
output-px4.txt | ||
output.txt | ||
wscript |