summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-03-19 13:50:42 +0200
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-03-19 13:50:42 +0200
commitfe84233353f440890ebc4556c6d22f0789c67933 (patch)
treec2f4f5841b082386b599d710e46afd0e7e43f29f
parent8e7a5a4c3e51007ce6579292642517e3d3eb9c50 (diff)
downloadlibgnome-volume-control-fe84233353f440890ebc4556c6d22f0789c67933.tar.gz
mixer-control: fix -Wsign-compare warning
Stream id property in GvcMixerUIDevice is unsigned int.
-rw-r--r--gvc-mixer-control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gvc-mixer-control.c b/gvc-mixer-control.c
index 6218a1b..456e6f6 100644
--- a/gvc-mixer-control.c
+++ b/gvc-mixer-control.c
@@ -1234,7 +1234,7 @@ match_stream_with_devices (GvcMixerControl *control,
for (d = devices; d != NULL; d = d->next) {
GvcMixerUIDevice *device;
- gint device_stream_id;
+ guint device_stream_id;
gchar *device_port_name;
gchar *origin;
gchar *description;