diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-03-17 09:54:28 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-03-17 09:54:28 +0000 |
| commit | f68362ad6ffef77261e2f64cedc08a023c721ae7 (patch) | |
| tree | 455e19964b6efb605374ea192b97d8eed0307c97 /apps/plugins/search.c | |
| parent | 75e1fd718f4d354afbee4cf5251e03d5101c0daf (diff) | |
| download | rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.zip rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.tar.gz rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.tar.bz2 rockbox-f68362ad6ffef77261e2f64cedc08a023c721ae7.tar.xz | |
Fix simulator builds, and some debugf() format strings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12817 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/search.c')
| -rw-r--r-- | apps/plugins/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/search.c b/apps/plugins/search.c index 26669f2..1705998 100644 --- a/apps/plugins/search.c +++ b/apps/plugins/search.c @@ -154,7 +154,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) rb = api; - DEBUGF("%s - %s\n", parameter, &filename[rb->strlen(filename)-4]); + DEBUGF("%s - %s\n", (char *)parameter, &filename[rb->strlen(filename)-4]); /* Check the extension. We only allow .m3u files. */ if(rb->strcasecmp(&filename[rb->strlen(filename)-4], ".m3u") && rb->strcasecmp(&filename[rb->strlen(filename)-5], ".m3u8")) { |