summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-15 23:05:44 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-15 23:05:44 +0000
commitcfc56d53a38771f6533ec454b644467cd8988a9b (patch)
tree047f54a4fbf2cf08e9ca537d1bab7c97a66faa65 /firmware
parent377725fefe85e65f387508c2d18a4bcabba58e9c (diff)
downloadrockbox-cfc56d53a38771f6533ec454b644467cd8988a9b.tar.gz
rockbox-cfc56d53a38771f6533ec454b644467cd8988a9b.zip
More buffer size fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1362 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/id3.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/id3.h b/firmware/id3.h
index 9c8b5663a9..203e997073 100644
--- a/firmware/id3.h
+++ b/firmware/id3.h
@@ -19,8 +19,10 @@
19#ifndef ID3_H 19#ifndef ID3_H
20#define ID3_H 20#define ID3_H
21 21
22#include "file.h"
23
22struct mp3entry { 24struct mp3entry {
23 char path[256]; 25 char path[MAX_PATH];
24 char *title; 26 char *title;
25 char *artist; 27 char *artist;
26 char *album; 28 char *album;