From f6f30579302da4c9cf38aaad055423ca3d066839 Mon Sep 17 00:00:00 2001 From: ejurgensen Date: Wed, 14 Aug 2013 20:32:46 +0200 Subject: [PATCH] Fix indentation --- src/filescanner_m3u.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/filescanner_m3u.c b/src/filescanner_m3u.c index 340a3081..ba9f4dd4 100644 --- a/src/filescanner_m3u.c +++ b/src/filescanner_m3u.c @@ -183,19 +183,19 @@ scan_m3u_playlist(char *file) entry = rel_entry; } - filename = m_realpath(entry); - if (!filename) - { - DPRINTF(E_WARN, L_SCAN, "Could not determine real path for '%s': %s\n", entry, strerror(errno)); + filename = m_realpath(entry); + if (!filename) + { + DPRINTF(E_WARN, L_SCAN, "Could not determine real path for '%s': %s\n", entry, strerror(errno)); - continue; - } + continue; + } - ret = db_pl_add_item_bypath(pl_id, filename); - if (ret < 0) - DPRINTF(E_WARN, L_SCAN, "Could not add %s to playlist\n", filename); + ret = db_pl_add_item_bypath(pl_id, filename); + if (ret < 0) + DPRINTF(E_WARN, L_SCAN, "Could not add %s to playlist\n", filename); - free(filename); + free(filename); } free(pl_base);