forked from Archive/PX4-Autopilot
Change fabsf() to abs for int arg
Clang complains that fabsf() is being used for an int arg. Use abs() instead. Signed-off-by: Mark Charlebois <charlebm@gmail.com>
This commit is contained in:
parent
b47d623d57
commit
2ea82548a4
|
@ -106,7 +106,7 @@ int test_rc(int argc, char *argv[])
|
|||
|
||||
/* go and check values */
|
||||
for (unsigned i = 0; i < rc_input.channel_count; i++) {
|
||||
if (fabsf(rc_input.values[i] - rc_last.values[i]) > 20) {
|
||||
if (abs(rc_input.values[i] - rc_last.values[i]) > 20) {
|
||||
PX4_ERR("comparison fail: RC: %d, expected: %d", rc_input.values[i], rc_last.values[i]);
|
||||
(void)close(_rc_sub);
|
||||
return ERROR;
|
||||
|
|
Loading…
Reference in New Issue