about summary refs log tree commit diff
path: root/log.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-02 16:13:00 -0400
committerJune McEnroe <june@causal.agency>2018-09-02 16:13:00 -0400
commit240f9ebf8445c6e9a569b40876db0681ffc8a1d0 (patch)
tree63dbb1ae562c3eec80d46d0eba85a8ea11086f85 /log.c
parentAdd status indicators (diff)
downloadcatgirl-240f9ebf8445c6e9a569b40876db0681ffc8a1d0.tar.gz
catgirl-240f9ebf8445c6e9a569b40876db0681ffc8a1d0.zip
Use PascalCase for constants
Begone underscores.
Diffstat (limited to 'log.c')
-rw-r--r--log.c2
1 files changed, 1 insertions, 1 deletions
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);