5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-06 16:08:28 -04:00

AP_Param: signed/unsigned conversion

Signed-off-by: Daniel Frenzel <dgdanielf@gmail.com>
This commit is contained in:
Daniel Frenzel 2014-08-07 16:51:36 +02:00 committed by Andrew Tridgell
parent 1c7e8f8fb2
commit dd705e3fdb

View File

@ -66,7 +66,7 @@ static uint8_t type_size(enum ap_var_type type)
case AP_PARAM_MATRIX3F:
return 3*3*4;
}
printf("unknown type %u\n", type);
printf("unknown type %u\n", (unsigned int)type);
return 0;
}