Delete leading spaces surrounding closefile

Aesthetics and convention aside, they confuse git diff into
misidentifying closefile as filename.
This commit is contained in:
Miguel Pineiro Jr 2021-12-08 18:42:59 -05:00
parent 01749f04cf
commit 1d780ac4f8
1 changed files with 3 additions and 3 deletions

6
run.c
View File

@ -1860,8 +1860,8 @@ const char *filename(FILE *fp)
return "???";
}
Cell *closefile(Node **a, int n)
{
Cell *closefile(Node **a, int n)
{
Cell *x;
size_t i;
bool stat;
@ -1893,7 +1893,7 @@ const char *filename(FILE *fp)
x = gettemp();
setfval(x, (Awkfloat) (stat ? -1 : 0));
return(x);
}
}
void closeall(void)
{