aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Pineiro Jr <mpj@pineiro.cc>2021-12-08 18:42:59 -0500
committerMiguel Pineiro Jr <mpj@pineiro.cc>2021-12-08 22:07:49 -0500
commit1d780ac4f8479c7b7a8d4699f25dc34488fb7c4d (patch)
tree13b9ed2d095c52bbdb6ba1ac6c33922b63ea1df9
parent01749f04cf1366ac50d998c4747acc89549c082f (diff)
downloadone-true-awk-1d780ac4f8479c7b7a8d4699f25dc34488fb7c4d.tar.gz
Delete leading spaces surrounding closefile
Aesthetics and convention aside, they confuse git diff into misidentifying closefile as filename.
-rw-r--r--run.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/run.c b/run.c
index 3ad9ecf..6bff3e1 100644
--- a/run.c
+++ b/run.c
@@ -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)
{