Skip to content

Commit 0c285a0

Browse files
committed
cosme
rewrite int err; err = poll_sndio(); if (err < 0) { : to if (poll_sndio() < 0) { :
1 parent c18b562 commit 0c285a0

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/audio.c

+3-7
Original file line numberDiff line numberDiff line change
@@ -1000,8 +1000,6 @@ int audio_get (int a)
10001000
int n;
10011001
#if USE_ALSA
10021002
int retries = 0;
1003-
#elif USE_SNDIO
1004-
int err;
10051003
#endif
10061004

10071005
#if STATISTICS
@@ -1135,8 +1133,7 @@ int audio_get (int a)
11351133
while (adev[a].inbuf_next >= adev[a].inbuf_len) {
11361134

11371135
assert (adev[a].sndio_in_handle != NULL);
1138-
err = poll_sndio (adev[a].sndio_in_handle, POLLIN);
1139-
if (err < 0) {
1136+
if (poll_sndio (adev[a].sndio_in_handle, POLLIN) < 0) {
11401137
adev[a].inbuf_len = 0;
11411138
adev[a].inbuf_next = 0;
11421139
return (-1);
@@ -1436,15 +1433,14 @@ int audio_flush (int a)
14361433

14371434
int k;
14381435
unsigned char *ptr;
1439-
int len, err;
1436+
int len;
14401437

14411438
ptr = adev[a].outbuf_ptr;
14421439
len = adev[a].outbuf_len;
14431440

14441441
while (len > 0) {
14451442
assert (adev[a].sndio_out_handle != NULL);
1446-
err = poll_sndio (adev[a].sndio_out_handle, POLLOUT);
1447-
if (err < 0) {
1443+
if (poll_sndio (adev[a].sndio_out_handle, POLLOUT) < 0) {
14481444
text_color_set(DW_COLOR_ERROR);
14491445
perror("Can't write to audio device");
14501446
adev[a].outbuf_len = 0;

0 commit comments

Comments
 (0)