summaryrefslogtreecommitdiff
path: root/plugins/converter
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-05-23 10:04:09 +0200
committerGravatar waker <wakeroid@gmail.com>2011-05-23 10:04:09 +0200
commit64f56abbe68beb7dfdd33854714e3a7e18d093ff (patch)
tree9d266dcf5d57cb28cf0c5b2e96a558520e7c3c42 /plugins/converter
parentdc23dfb4fbab0a99b62da08a8d89f39d95486b9a (diff)
fixed formatting bug in converter
Diffstat (limited to 'plugins/converter')
-rw-r--r--plugins/converter/converter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/converter/converter.c b/plugins/converter/converter.c
index a00de67a..04a97777 100644
--- a/plugins/converter/converter.c
+++ b/plugins/converter/converter.c
@@ -750,7 +750,7 @@ convert (DB_playItem_t *it, const char *outfolder, const char *outfile, int outp
int len = sizeof (enc);
while (e && *e) {
if (len <= 0) {
- fprintf (stderr, "converter: failed to assemble encoder command line - buffer is not big enough, try to shorten your parameters. max allowed length is %lu characters\n", sizeof (enc));
+ fprintf (stderr, "converter: failed to assemble encoder command line - buffer is not big enough, try to shorten your parameters. max allowed length is %u characters\n", (unsigned)sizeof (enc));
goto error;
}
if (e[0] == '%' && e[1]) {