diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-15 23:05:44 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-15 23:05:44 +0000 |
| commit | cfc56d53a38771f6533ec454b644467cd8988a9b (patch) | |
| tree | 047f54a4fbf2cf08e9ca537d1bab7c97a66faa65 | |
| parent | 377725fefe85e65f387508c2d18a4bcabba58e9c (diff) | |
| download | rockbox-cfc56d53a38771f6533ec454b644467cd8988a9b.zip rockbox-cfc56d53a38771f6533ec454b644467cd8988a9b.tar.gz rockbox-cfc56d53a38771f6533ec454b644467cd8988a9b.tar.bz2 rockbox-cfc56d53a38771f6533ec454b644467cd8988a9b.tar.xz | |
More buffer size fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1362 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/id3.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/id3.h b/firmware/id3.h index 9c8b566..203e997 100644 --- a/firmware/id3.h +++ b/firmware/id3.h @@ -19,8 +19,10 @@ #ifndef ID3_H #define ID3_H +#include "file.h" + struct mp3entry { - char path[256]; + char path[MAX_PATH]; char *title; char *artist; char *album; |