summary refs log tree commit diff
path: root/bin/edi/file.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-11-21 23:41:15 -0500
committerJune McEnroe <june@causal.agency>2018-11-21 23:41:15 -0500
commitf8da655d5b8154940540a1de62122b7639cf235e (patch)
tree969ab688a51ab6ca2a68a64636e8b21f38147a8d /bin/edi/file.c
parentFix freeing empty buffer block (diff)
downloadsrc-f8da655d5b8154940540a1de62122b7639cf235e.tar.gz
src-f8da655d5b8154940540a1de62122b7639cf235e.zip
Add Iter for edi
Diffstat (limited to 'bin/edi/file.c')
-rw-r--r--bin/edi/file.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/edi/file.c b/bin/edi/file.c
index 9f85d1da..55b7d679 100644
--- a/bin/edi/file.c
+++ b/bin/edi/file.c
@@ -34,7 +34,6 @@ struct File fileAlloc(char *path) {
 		.path = path,
 		.buf = bufferAlloc(BufCap),
 		.log = logAlloc(LogCap),
-		.clean = 0,
 	};
 	if (!path) logPush(&file.log, TableEmpty);
 	return file;