aboutsummaryrefslogtreecommitdiff
path: root/miscutils/fbsplash.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/fbsplash.c')
-rw-r--r--miscutils/fbsplash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/fbsplash.c b/miscutils/fbsplash.c
index 6357f78ea..f8289c3d1 100644
--- a/miscutils/fbsplash.c
+++ b/miscutils/fbsplash.c
@@ -288,10 +288,10 @@ static void init(const char *cfg_filename)
288 "DEBUG\0" 288 "DEBUG\0"
289#endif 289#endif
290 ; 290 ;
291
292 char *token[2]; 291 char *token[2];
293 parser_t *parser = config_open2(cfg_filename, xfopen_stdin); 292 parser_t *parser = config_open2(cfg_filename, xfopen_stdin);
294 while (config_read(parser, token, 2, 2, "#=", PARSE_MIN_DIE)) { 293 while (config_read(parser, token, 2, 2, "#=",
294 (PARSE_NORMAL | PARSE_MIN_DIE) & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
295 unsigned val = xatoi_u(token[1]); 295 unsigned val = xatoi_u(token[1]);
296 int i = index_in_strings(param_names, token[0]); 296 int i = index_in_strings(param_names, token[0]);
297 if (i < 0) 297 if (i < 0)