Deleted Added
full compact
340c340
< if (IncludeFile)
---
> if (!IncludeFile)
342,345c342,344
< /* Push the include file on the open input file stack */
<
< PrPushInputFileStack (IncludeFile, Pathname);
< return (IncludeFile);
---
> fprintf (stderr, "Could not open include file %s\n", Pathname);
> ACPI_FREE (Pathname);
> return (NULL);
348,349c347,350
< ACPI_FREE (Pathname);
< return (NULL);
---
> /* Push the include file on the open input file stack */
>
> PrPushInputFileStack (IncludeFile, Pathname);
> return (IncludeFile);