mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
binfmt: unparenthesize a bit
This commit is contained in:
parent
52707598d5
commit
33068a0f5e
@ -200,15 +200,13 @@ static int run(int argc, char *argv[]) {
|
|||||||
if (arg_unregister)
|
if (arg_unregister)
|
||||||
return disable_binfmt();
|
return disable_binfmt();
|
||||||
|
|
||||||
if (argc > optind) {
|
if (argc > optind)
|
||||||
int i;
|
for (int i = optind; i < argc; i++) {
|
||||||
|
|
||||||
for (i = optind; i < argc; i++) {
|
|
||||||
k = apply_file(argv[i], false);
|
k = apply_file(argv[i], false);
|
||||||
if (k < 0 && r == 0)
|
if (k < 0 && r == 0)
|
||||||
r = k;
|
r = k;
|
||||||
}
|
}
|
||||||
} else {
|
else {
|
||||||
_cleanup_strv_free_ char **files = NULL;
|
_cleanup_strv_free_ char **files = NULL;
|
||||||
char **f;
|
char **f;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user