summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-02-27 21:09:36 +0000
committerThomas Martitz <kugel@rockbox.org>2011-02-27 21:09:36 +0000
commitcab6ac22403731a796c8d6aa88a5adb9598e6214 (patch)
tree755973da5ce8cc56f1a42fc4bdaeff999077df9b /apps/recorder
parent41658bd07a1bc7b48ef12b356f67f11225593ddd (diff)
downloadrockbox-cab6ac22403731a796c8d6aa88a5adb9598e6214.tar.gz
rockbox-cab6ac22403731a796c8d6aa88a5adb9598e6214.zip
Fix warning in android build.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29440 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/albumart.c2
-rw-r--r--apps/recorder/albumart.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/albumart.c b/apps/recorder/albumart.c
index 7dab0ea187..5acb492412 100644
--- a/apps/recorder/albumart.c
+++ b/apps/recorder/albumart.c
@@ -275,7 +275,7 @@ bool search_albumart_files(const struct mp3entry *id3, const char *size_string,
275 * Stores the found filename in the buf parameter. 275 * Stores the found filename in the buf parameter.
276 * Returns true if a bitmap was found, false otherwise */ 276 * Returns true if a bitmap was found, false otherwise */
277bool find_albumart(const struct mp3entry *id3, char *buf, int buflen, 277bool find_albumart(const struct mp3entry *id3, char *buf, int buflen,
278 struct dim *dim) 278 const struct dim *dim)
279{ 279{
280 if (!id3 || !buf) 280 if (!id3 || !buf)
281 return false; 281 return false;
diff --git a/apps/recorder/albumart.h b/apps/recorder/albumart.h
index 0f50979a1a..80cacaf5f0 100644
--- a/apps/recorder/albumart.h
+++ b/apps/recorder/albumart.h
@@ -33,7 +33,7 @@
33 * Stores the found filename in the buf parameter. 33 * Stores the found filename in the buf parameter.
34 * Returns true if a bitmap was found, false otherwise */ 34 * Returns true if a bitmap was found, false otherwise */
35bool find_albumart(const struct mp3entry *id3, char *buf, int buflen, 35bool find_albumart(const struct mp3entry *id3, char *buf, int buflen,
36 struct dim *dim); 36 const struct dim *dim);
37 37
38#ifndef PLUGIN 38#ifndef PLUGIN
39/* Draw the album art bitmap from the given handle ID onto the given Skin. 39/* Draw the album art bitmap from the given handle ID onto the given Skin.