Browse Source

[alsa] fix missing - in -EPIPE

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@4126 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.120.1
torben 15 years ago
parent
commit
b08c3368e6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      drivers/alsa/alsa_driver.c

+ 1
- 1
drivers/alsa/alsa_driver.c View File

@@ -1698,7 +1698,7 @@ alsa_driver_write (alsa_driver_t* driver, jack_nframes_t nframes)
offset, contiguous)) < 0) {
jack_error ("ALSA: could not complete playback of %"
PRIu32 " frames: error = %d", contiguous, err);
if (err != EPIPE && err != ESTRPIPE)
if (err != -EPIPE && err != -ESTRPIPE)
return -1;
}



Loading…
Cancel
Save