diff options
author | June McEnroe <june@causal.agency> | 2018-09-02 16:13:00 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-02 16:13:00 -0400 |
commit | 240f9ebf8445c6e9a569b40876db0681ffc8a1d0 (patch) | |
tree | 63dbb1ae562c3eec80d46d0eba85a8ea11086f85 /log.c | |
parent | Add status indicators (diff) | |
download | catgirl-240f9ebf8445c6e9a569b40876db0681ffc8a1d0.tar.gz catgirl-240f9ebf8445c6e9a569b40876db0681ffc8a1d0.zip |
Use PascalCase for constants
Begone underscores.
Diffstat (limited to '')
-rw-r--r-- | log.c | 2 |
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); |