From 240f9ebf8445c6e9a569b40876db0681ffc8a1d0 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 2 Sep 2018 16:13:00 -0400 Subject: Use PascalCase for constants Begone underscores. --- log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'log.c') diff --git a/log.c b/log.c index 4a991bd..af8f66e 100644 --- a/log.c +++ b/log.c @@ -34,7 +34,7 @@ static struct Log { int month; int day; FILE *file; -} logs[TAGS_LEN]; +} logs[TagsLen]; void logOpen(const char *path) { logRoot = open(path, O_RDONLY | O_CLOEXEC); -- cgit 1.4.1