mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
raop: Silence unchecked return value warnings
Signed-off-by: Peter Meerwald-Stadler <pmeerw@pmeerw.net>
This commit is contained in:
parent
20960e7cc6
commit
6c35ac7c8f
1 changed files with 2 additions and 2 deletions
|
|
@ -1039,9 +1039,9 @@ static void rtsp_stream_cb(pa_rtsp_client *rtsp, pa_rtsp_state_t state, pa_rtsp_
|
||||||
if ((pc = strstr(token, "="))) {
|
if ((pc = strstr(token, "="))) {
|
||||||
*pc = 0;
|
*pc = 0;
|
||||||
if (pa_streq(token, "control_port"))
|
if (pa_streq(token, "control_port"))
|
||||||
pa_atou(pc + 1, &cport);
|
(void) pa_atou(pc + 1, &cport);
|
||||||
if (pa_streq(token, "timing_port"))
|
if (pa_streq(token, "timing_port"))
|
||||||
pa_atou(pc + 1, &tport);
|
(void) pa_atou(pc + 1, &tport);
|
||||||
*pc = '=';
|
*pc = '=';
|
||||||
}
|
}
|
||||||
pa_xfree(token);
|
pa_xfree(token);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue