AP_Param: Match output type and variable type

This commit is contained in:
murata 2019-01-02 05:48:57 +09:00 committed by Andrew Tridgell
parent 2e4dda5ece
commit 88c681586f
1 changed files with 1 additions and 1 deletions

View File

@ -623,7 +623,7 @@ uint8_t AP_Param::type_size(enum ap_var_type type)
case AP_PARAM_VECTOR3F:
return 3*4;
}
Debug("unknown type %u\n", type);
Debug("unknown type %d\n", type);
return 0;
}