Add braces to avoid ambigious else.

This commit is contained in:
Bill Fumerola 1999-07-02 15:26:53 +00:00
parent 0b7a57dd48
commit 465ebdc6e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48465

View File

@ -146,7 +146,7 @@ main(argc, argv)
(void)fclose(inf);
}
if (head)
if (head) {
if (xflag)
put_entries(head);
else {
@ -170,6 +170,7 @@ main(argc, argv)
system(cmd);
}
}
}
exit(exit_val);
}