Browse Source

AP_Param: Match output type and variable type

master
murata 6 years ago committed by Andrew Tridgell
parent
commit
88c681586f
  1. 2
      libraries/AP_Param/AP_Param.cpp

2
libraries/AP_Param/AP_Param.cpp

@ -623,7 +623,7 @@ uint8_t AP_Param::type_size(enum ap_var_type type) @@ -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;
}

Loading…
Cancel
Save