1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-15 04:08:07 -04:00

Two more indent fixes.

This commit is contained in:
Moritz Grimm 2015-04-15 13:20:32 +02:00
parent 26dd4d2a8e
commit dd1ab911c9

View File

@ -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')