mate-desktop / mate-settings-daemon

MATE settings daemon
https://mate-desktop.org
GNU General Public License v2.0
44 stars 46 forks source link

msd-media-keys-manager: comparison of unsigned expression in '< 0' is always false #328

Closed rbuj closed 3 years ago

rbuj commented 3 years ago
msd-media-keys-manager.c: In function 'do_sound_action':
/usr/include/glib-2.0/glib/gmacros.h:813:63: warning: comparison of unsigned expression in '< 0' is always false [-Wtype-limits]
  813 | #define CLAMP(x, low, high)  (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
      |                                                               ^
msd-media-keys-manager.c:783:24: note: in expansion of macro 'CLAMP'
  783 |                        CLAMP (100 * volume / (volume_max - volume_min), 0, 100),
      |                        ^~~~~