mirror of
https://github.com/apache/nuttx.git
synced 2026-08-18 01:49:24 +08:00
audio/audio: remove invalid assign of errno
Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
@@ -153,7 +153,6 @@ static int audio_open(FAR struct file *filep)
|
||||
ret = nxsem_wait(&upper->exclsem);
|
||||
if (ret < 0)
|
||||
{
|
||||
ret = -errno;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
@@ -204,7 +203,6 @@ static int audio_close(FAR struct file *filep)
|
||||
ret = nxsem_wait(&upper->exclsem);
|
||||
if (ret < 0)
|
||||
{
|
||||
ret = -errno;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user