commit | 5869cd357e9b0bd9dffe70ac207cda4ec266b73c | [log] [tgz] |
---|---|---|
author | Victor Lourme <l0w@protonmail.ch> | Mon Mar 26 19:36:07 2018 +0200 |
committer | Victor Lourme <l0w@protonmail.ch> | Sun Apr 01 02:23:39 2018 +0200 |
tree | d769506fa9d809250885d64cb583dd0e6b8afc04 | |
parent | d5b988f3b2361e0a189310fa4328e45202ce12aa [diff] |
audio: return EINVAL to avoid get_presentation_position spamming logs Change-Id: I32ec0c5651395c7af3dc4b80d25204bf0fcc1977
diff --git a/audio/audio_hw.c b/audio/audio_hw.c index 94650dc..9aa5989 100644 --- a/audio/audio_hw.c +++ b/audio/audio_hw.c
@@ -3303,7 +3303,7 @@ uint64_t *frames, struct timespec *timestamp) { struct stream_out *out = (struct stream_out *)stream; - int ret = -1; + int ret = -EINVAL; lock_output_stream(out); @@ -3342,7 +3342,6 @@ ret = 0; goto done; } - ret = -1; } } }