diff options
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/playlist.c b/src/playlist.c index 390cae8b9..d8f2c6b65 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -135,9 +135,8 @@ void initPlaylist(void) if (param) { playlist_max_length = strtol(param->value, &test, 10); if (*test != '\0') { - ERROR("max playlist length \"%s\" is not an integer, " + FATAL("max playlist length \"%s\" is not an integer, " "line %i\n", param->value, param->line); - exit(EXIT_FAILURE); } } |