aboutsummaryrefslogtreecommitdiffstats
path: root/src/song.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-05-19 05:07:31 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-05-19 05:07:31 +0000
commit33faf9812ccea04e7787d04eadf503ce1febc6b7 (patch)
tree2e3463d734d8172a0802543918d5093f87f10d9b /src/song.h
parentef8209e12962a28f392372a6f6048e016cea273e (diff)
downloadmpd-33faf9812ccea04e7787d04eadf503ce1febc6b7.tar.gz
mpd-33faf9812ccea04e7787d04eadf503ce1febc6b7.tar.xz
mpd-33faf9812ccea04e7787d04eadf503ce1febc6b7.zip
fix a nasty bug when deleting a stream from the playlist
git-svn-id: https://svn.musicpd.org/mpd/trunk@1082 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/song.h')
-rw-r--r--src/song.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/song.h b/src/song.h
index 48d1dcd7f..cc559c5b9 100644
--- a/src/song.h
+++ b/src/song.h
@@ -31,8 +31,8 @@
#include "list.h"
typedef enum {
- SONG_TYPE_FILE,
- SONG_TYPE_URL
+ SONG_TYPE_FILE = 1,
+ SONG_TYPE_URL = 2
} SONG_TYPE;
typedef struct _Song {