summaryrefslogtreecommitdiff
path: root/music.h
diff options
context:
space:
mode:
Diffstat (limited to 'music.h')
-rw-r--r--music.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/music.h b/music.h
index b643c8e..4213fc5 100644
--- a/music.h
+++ b/music.h
@@ -9,13 +9,12 @@
struct file {
gchar *name;
gssize size;
- struct file *next;
};
struct directory {
gchar *path;
- struct directory *sub, *next;
- struct file *files;
+ GSList *sub;
+ GSList *files;
};
extern struct directory *music_root;