From 0aab80a78c6eabfe77f81cc30f2b2cade4ea1a58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberts=20Muktup=C4=81vels?= Date: Wed, 25 Dec 2019 19:56:45 +0200 Subject: mixer-control: fix -Wsign-compare warnings headset_card type is changed from int to guint32 to match uint32_t used in PulseAudio's pa_card_info struct. --- gvc-mixer-control.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gvc-mixer-control.c b/gvc-mixer-control.c index 04644d7..a43ae1d 100644 --- a/gvc-mixer-control.c +++ b/gvc-mixer-control.c @@ -2096,7 +2096,7 @@ create_ui_device_from_card (GvcMixerControl *control, #ifdef HAVE_ALSA typedef struct { char *port_name_to_set; - int headset_card; + guint32 headset_card; } PortStatusData; static void @@ -2124,7 +2124,7 @@ sink_info_cb (pa_context *c, { PortStatusData *data = userdata; pa_operation *o; - int j; + guint j; const char *s; if (eol != 0) { @@ -2160,7 +2160,7 @@ source_info_cb (pa_context *c, { PortStatusData *data = userdata; pa_operation *o; - int j; + guint j; const char *s; if (eol != 0) { -- cgit v1.2.1