summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-20 18:46:16 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-20 18:46:16 +0100
commitd6ddcc4159e43fa9997d0608ae91d3d0042f51af (patch)
tree82eef7ccf2f16367bcd7a5eea19f58ed5f9296a7 /playlist.c
parenteb41339039344311421cf0254a8e6f307cc01bd8 (diff)
fixed vfs_curl to handle size and content-type headers properly
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/playlist.c b/playlist.c
index 45f7de58..df9a23ca 100644
--- a/playlist.c
+++ b/playlist.c
@@ -440,7 +440,7 @@ pl_insert_pls (playItem_t *after, const char *fname, int *pabort, int (*cb)(play
}
if (sz < 30) {
vfs_fclose (fp);
- trace ("file %s is too small to be a playlist\n", fname);
+ trace ("file %s is too small to be a playlist (%d)\n", fname, sz);
return NULL;
}
vfs_rewind (fp);