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

if the else belongs to.
This commit is contained in:
Bjoern A. Zeeb 2011-12-19 08:50:17 +00:00
parent d96ea877a7
commit 2cce1b69c4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228701

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: