diff options
author | Vinod Koul <vinod.koul@intel.com> | 2013-07-20 12:00:38 +0530 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2013-07-25 12:56:26 -0700 |
commit | adad134c906042742a801fb66eb4271a7130af83 (patch) | |
tree | 142920c456cc91236be174de68a7fde50735c029 /compress.c | |
parent | 79c370788bfeac8e2951cc35844fb96f15f28159 (diff) |
Update to latest tinycompress
22406d2 fix error returned by compress_wait()
7d7965c compress: fix the typo in compress_get_alsa_rate()
Diffstat (limited to 'compress.c')
-rw-r--r-- | compress.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -623,7 +623,7 @@ int compress_wait(struct compress *compress, int timeout_ms) return 0; } if (fds.revents & POLLERR) { - return oops(compress, -EIO, "poll returned error!"); + return oops(compress, EIO, "poll returned error!"); } return ret; } |