summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-02-10 20:20:12 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-02-10 20:20:12 +0000
commit57ca48458f3b4040c2f4226deda61272c81ab417 (patch)
treef8351c711d28002e66bb6fbb06dbd8f34167a67d
parent40e76916cdc644dd5539258896111ba7cb654928 (diff)
downloadrockbox-57ca48458f3b4040c2f4226deda61272c81ab417.tar.gz
rockbox-57ca48458f3b4040c2f4226deda61272c81ab417.zip
Fix test plugin build.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29277 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/jpeg_load.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/recorder/jpeg_load.c b/apps/recorder/jpeg_load.c
index cd13934921..a02386f76f 100644
--- a/apps/recorder/jpeg_load.c
+++ b/apps/recorder/jpeg_load.c
@@ -2230,6 +2230,7 @@ int clip_jpeg_fd(int fd,
2230 return 0; 2230 return 0;
2231} 2231}
2232 2232
2233#ifndef JPEG_FROM_MEM
2233int read_jpeg_fd(int fd, 2234int read_jpeg_fd(int fd,
2234 struct bitmap *bm, 2235 struct bitmap *bm,
2235 int maxsize, 2236 int maxsize,
@@ -2238,5 +2239,6 @@ int read_jpeg_fd(int fd,
2238{ 2239{
2239 return clip_jpeg_fd(fd, 0, bm, maxsize, format, cformat); 2240 return clip_jpeg_fd(fd, 0, bm, maxsize, format, cformat);
2240} 2241}
2242#endif
2241 2243
2242/**************** end JPEG code ********************/ 2244/**************** end JPEG code ********************/