diff options
author | Max Kellermann <max@duempel.org> | 2008-10-29 20:40:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-29 20:40:27 +0100 |
commit | 58c5bee9f0bcb46da7d113b66a4e1e2d7add9837 (patch) | |
tree | 4517d2156aa3643247e7f2fc886af86d3dfd8791 /src/output/shout_plugin.h | |
parent | 03390d8be1cb8983778faf6eedb9bcfd26a6dbce (diff) | |
download | mpd-58c5bee9f0bcb46da7d113b66a4e1e2d7add9837.tar.gz mpd-58c5bee9f0bcb46da7d113b66a4e1e2d7add9837.tar.xz mpd-58c5bee9f0bcb46da7d113b66a4e1e2d7add9837.zip |
output: use bool for return values and flags
Don't return 0/-1 on success/error, but true/false. Instead of int,
use bool for storing flags.
Diffstat (limited to '')
-rw-r--r-- | src/output/shout_plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/shout_plugin.h b/src/output/shout_plugin.h index ae7d23b03..2ddde22ae 100644 --- a/src/output/shout_plugin.h +++ b/src/output/shout_plugin.h @@ -65,7 +65,7 @@ struct shout_data { float quality; int bitrate; - int opened; + bool opened; struct tag *tag; int tag_to_send; |