From dd1ab911c98971302c04c4dbe2300aa248586664 Mon Sep 17 00:00:00 2001 From: Moritz Grimm Date: Wed, 15 Apr 2015 13:20:32 +0200 Subject: [PATCH] Two more indent fixes. --- src/playlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playlist.c b/src/playlist.c index 2a13784..28cbe84 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -63,7 +63,7 @@ playlist_add(playlist_t *pl, const char *entry) if (pl == NULL || entry == NULL) { printf("%s: playlist_add(): Internal error: Bad arguments\n", - __progname); + __progname); exit(1); } @@ -156,7 +156,7 @@ playlist_read(const char *filename) char skip_buf[2]; printf("%s[%lu]: File or path name too long\n", - pl->filename, line); + pl->filename, line); /* Discard any excess chars in that line. */ while (fgets(skip_buf, (int)sizeof(skip_buf), filep) != NULL) { if (skip_buf[0] == '\n')