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
commit49f804e989885f1ad5fc2d2127b285ea34edb3b8 (patch)
tree28eda7556502c1382d0bf134e5f3c8bcb7a52b62 /bin/edi/file.c
parentFix freeing empty buffer block (diff)
downloadsrc-49f804e989885f1ad5fc2d2127b285ea34edb3b8.tar.gz
src-49f804e989885f1ad5fc2d2127b285ea34edb3b8.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 322b5616..bfab9293 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;