Hi Anderson, >>> +{ >>> + int delta; >>> + >>> + if (old > new) >>> + delta = old - new; >>> + else >>> + delta = new - old; >>> + >>> + /* only 8 dBm or more */ >>> + return delta >= 8; >> >> int delta = old > new ? old - new : new - old; > > And why not: > > int delta = abs(old - new); > > (unless there is no abs() in bionic) I remember that abs() needs -lm or something stupid. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html