diff options
author | Max Kellermann <max@duempel.org> | 2008-10-29 22:34:37 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-29 22:34:37 +0100 |
commit | f8722913cf2f9d88cdc20a022c81d131c1728b17 (patch) | |
tree | 2ac32849414bea9ab267038c136425d1d582eb8e /src/output_internal.h | |
parent | 7da0e005f34bd8ce305b8ece7a33a8405bbaba87 (diff) | |
download | mpd-f8722913cf2f9d88cdc20a022c81d131c1728b17.tar.gz mpd-f8722913cf2f9d88cdc20a022c81d131c1728b17.tar.xz mpd-f8722913cf2f9d88cdc20a022c81d131c1728b17.zip |
output: removed audio_output.result
Since open() and play() close the device on error, we can simply check
audio_output.open instead of audio_output.result after a call.
Diffstat (limited to 'src/output_internal.h')
-rw-r--r-- | src/output_internal.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/output_internal.h b/src/output_internal.h index cfa231210..97b242551 100644 --- a/src/output_internal.h +++ b/src/output_internal.h @@ -109,11 +109,6 @@ struct audio_output { const struct tag *tag; } args; - - /** - * Result value of the command. true means success. - */ - bool result; }; /** @@ -134,10 +129,4 @@ audio_output_command_is_finished(const struct audio_output *ao) return ao->command == AO_COMMAND_NONE; } -static inline bool -audio_output_get_result(const struct audio_output *ao) -{ - return ao->result; -} - #endif |