summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-02-06 20:50:49 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-02-06 20:50:49 +0100
commite7dff28152db2dbe101008869961813ffc3e8209 (patch)
treed60bd5540dbb5d770764bc08a6b3c06c45d13917 /plugins
parenta13223b45cfad4b3b289e1c091adc1a946e62b54 (diff)
added linebreak to trace message in ffmpeg plugin
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ffmpeg/ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ffmpeg/ffmpeg.c b/plugins/ffmpeg/ffmpeg.c
index bcaa2632..4f1fec0f 100644
--- a/plugins/ffmpeg/ffmpeg.c
+++ b/plugins/ffmpeg/ffmpeg.c
@@ -106,7 +106,7 @@ ffmpeg_init (DB_playItem_t *it) {
// open file
if ((ret = av_open_input_file(&fctx, uri, NULL, 0, NULL)) < 0) {
- trace ("fctx is %p, ret %d/%s", fctx, ret, strerror(-ret));
+ trace ("fctx is %p, ret %d/%s\n", fctx, ret, strerror(-ret));
return -1;
}