From: Mike Brady Date: Wed, 27 Feb 2019 19:30:32 +0000 (+0000) Subject: make the formats rate unsigned to avoid a warning. X-Git-Tag: 3.3RC0~5^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc393b98596a4d306c386f0610b280539b1126f0;p=thirdparty%2Fshairport-sync.git make the formats rate unsigned to avoid a warning. --- diff --git a/audio_sndio.c b/audio_sndio.c index dd403894..fcfcc4f6 100644 --- a/audio_sndio.c +++ b/audio_sndio.c @@ -65,7 +65,7 @@ struct sio_par par; struct sndio_formats { const char *name; enum sps_format_t fmt; - int rate; + unsigned int rate; unsigned int bits; unsigned int bps; unsigned int sig;