Correct close statement.

This commit is contained in:
Andreas Jaeger 2001-05-18 13:01:32 +00:00
parent 6e2d19cab9
commit 0e17ee3c71
1 changed files with 2 additions and 2 deletions

View File

@ -8,13 +8,13 @@ BEGIN {
{ {
while ((getline < input[s]) > 0) while ((getline < input[s]) > 0)
{ {
if ($1 == "@include") if ($1 == "@include")
{ {
input[++s] = $2; input[++s] = $2;
print $2, "\\"; print $2, "\\";
} }
} }
close(input[stackptr]); close(input[s]);
} }
} }
print ""; print "";