diff options
author | Max Kellermann <max@duempel.org> | 2008-10-08 10:49:16 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-08 10:49:16 +0200 |
commit | b159832418dd6ac92229686e1ac6b23f0fe609cb (patch) | |
tree | cee4cb0d8d63492e5db470826cc396ba00cfe5cf /src/player_control.h | |
parent | d562ba5fbbe117585eaade40a8e9c6ef1bf7ca1f (diff) | |
download | mpd-b159832418dd6ac92229686e1ac6b23f0fe609cb.tar.gz mpd-b159832418dd6ac92229686e1ac6b23f0fe609cb.tar.xz mpd-b159832418dd6ac92229686e1ac6b23f0fe609cb.zip |
notify: removed the "Notify" typedef
Typedefs shouldn't be used, use the bare struct names instead.
Diffstat (limited to '')
-rw-r--r-- | src/player_control.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player_control.h b/src/player_control.h index fd2a5ca45..46b03a9ac 100644 --- a/src/player_control.h +++ b/src/player_control.h @@ -80,7 +80,7 @@ enum player_queue_state { struct player_control { unsigned int buffered_before_play; - Notify notify; + struct notify notify; volatile enum player_command command; volatile enum player_state state; volatile int8_t error; |