From efcf9dded8ca4a0666c62150b55719f84a4ee424 Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 5 Feb 2024 22:01:25 +0000 Subject: add t option --- src/editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor.c b/src/editor.c index aa541e9..bceb531 100644 --- a/src/editor.c +++ b/src/editor.c @@ -105,7 +105,7 @@ int main(int argc, char *argv[]) { int chunkSize = 16; int flags, opt; - while ((opt = getopt(argc, argv, "c:s:a:h")) != -1) { + while ((opt = getopt(argc, argv, "c:s:a:t:h")) != -1) { switch (opt) { case 'c': chunkSize = atoi(optarg); -- cgit v1.2.1