summaryrefslogtreecommitdiff
path: root/apps/plugins/vbrfix.c
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2008-05-13 09:57:56 +0000
committerSteve Bavin <pondlife@pondlife.me>2008-05-13 09:57:56 +0000
commit652657781805d9cc10d744a49fb23eb17019fbbf (patch)
tree2d1a6ae597a17531f726b57fd9f8cbaa2a46a07f /apps/plugins/vbrfix.c
parenta94e40d5153ab698fa8a1b6b57d91fcb6acc905e (diff)
Plugin parameters should be const.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/vbrfix.c')
-rw-r--r--apps/plugins/vbrfix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/vbrfix.c b/apps/plugins/vbrfix.c
index 665a2aae5e..85a61cbfc3 100644
--- a/apps/plugins/vbrfix.c
+++ b/apps/plugins/vbrfix.c
@@ -20,7 +20,7 @@
PLUGIN_HEADER
-static struct plugin_api* rb;
+static const struct plugin_api* rb;
static char *audiobuf;
static ssize_t audiobuflen;
@@ -36,7 +36,7 @@ static void xingupdate(int percent)
rb->lcd_update();
}
-static int insert_data_in_file(char *fname, int fpos, char *buf, int num_bytes)
+static int insert_data_in_file(const char *fname, int fpos, char *buf, int num_bytes)
{
int readlen;
int rc;
@@ -126,7 +126,7 @@ static const unsigned char empty_id3_header[] =
0x00, 0x00, 0x1f, 0x76 /* Size is 4096 minus 10 bytes for the header */
};
-static bool vbr_fix(char *selected_file)
+static bool vbr_fix(const char *selected_file)
{
struct mp3entry entry;
int fd;
@@ -261,7 +261,7 @@ static bool vbr_fix(char *selected_file)
return false;
}
-enum plugin_status plugin_start(struct plugin_api* api, void *parameter)
+enum plugin_status plugin_start(const struct plugin_api* api, const void *parameter)
{
rb = api;