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

6
run.c
View File

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