Przeglądaj źródła

lib/parse_ini.c: Cosmetic change

Replace an "if" with the ternary operator.
Holger Weiss 12 lat temu
rodzic
commit
b81c10e00c
1 zmienionych plików z 1 dodań i 4 usunięć
  1. 1 4
      lib/parse_ini.c

+ 1 - 4
lib/parse_ini.c

@@ -120,10 +120,7 @@ np_get_defaults(const char *locator, const char *default_section)
 	np_ini_info i;
 
 	parse_locator(locator, default_section, &i);
-	if (strcmp(i.file, "-") == 0)
-		inifile = stdin;
-	else
-		inifile = fopen(i.file, "r");
+	inifile = strcmp(i.file, "-") == 0 ? stdin : fopen(i.file, "r");
 
 	if (inifile == NULL)
 		die(STATE_UNKNOWN, "%s\n", _("Can't read config file"));