summaryrefslogtreecommitdiff
path: root/firmware/id3.h
diff options
context:
space:
mode:
authorJerome Kuptz <jeromekuptz@gmail.com>2002-06-27 08:33:58 +0000
committerJerome Kuptz <jeromekuptz@gmail.com>2002-06-27 08:33:58 +0000
commitb6d3bc2dd96705985675f8ad372a494470c6d932 (patch)
tree59ed790a6d8ac7daee5c1f6339bd4796bc614f04 /firmware/id3.h
parent9766a1bb7915e98ce6af560619e0f6eb41cd0357 (diff)
downloadrockbox-b6d3bc2dd96705985675f8ad372a494470c6d932.tar.gz
rockbox-b6d3bc2dd96705985675f8ad372a494470c6d932.zip
changed char* path to char path[256] and added a copy of filename on mp3info function
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1229 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/id3.h')
-rw-r--r--firmware/id3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/id3.h b/firmware/id3.h
index 798753ab97..4729d5355f 100644
--- a/firmware/id3.h
+++ b/firmware/id3.h
@@ -20,7 +20,7 @@
20#define ID3_H 20#define ID3_H
21 21
22struct mp3entry { 22struct mp3entry {
23 char *path; 23 char path[256];
24 char *title; 24 char *title;
25 char *artist; 25 char *artist;
26 char *album; 26 char *album;