Unbreak the build after r228697 adding the { } block to make clear which

if the else belongs to.
This commit is contained in:
bz 2011-12-19 08:50:17 +00:00
parent 330e98b5de
commit 6eb0dc9dd3

View File

@ -268,13 +268,14 @@ expand_builtin(const char *argv[], int argc, int td)
break;
case INCLTYPE:
if (argc > 2)
if (!doincl(argv[2]))
if (!doincl(argv[2])) {
if (mimic_gnu)
warn("%s at line %lu: include(%s)",
CURRENT_NAME, CURRENT_LINE, argv[2]);
else
err(1, "%s at line %lu: include(%s)",
CURRENT_NAME, CURRENT_LINE, argv[2]);
}
break;
case SINCTYPE: