diff options
Diffstat (limited to 'src/playlist.h')
-rw-r--r-- | src/playlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/playlist.h b/src/playlist.h index 7a6a3a8d7..ab6e0979b 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -43,7 +43,7 @@ enum playlist_result { PLAYLIST_RESULT_DISABLED, }; -typedef struct _Playlist { +struct playlist { /** * The song queue - it contains the "real" playlist. */ @@ -84,7 +84,7 @@ typedef struct _Playlist { * This variable is only valid if #playing is true. */ int queued; -} Playlist; +}; extern bool playlist_saveAbsolutePaths; |