diff options
author | Curtis McEnroe | 2018-09-02 16:13:00 -0400 |
---|---|---|
committer | Curtis McEnroe | 2018-09-02 16:13:00 -0400 |
commit | 240f9ebf8445c6e9a569b40876db0681ffc8a1d0 (patch) | |
tree | 63dbb1ae562c3eec80d46d0eba85a8ea11086f85 /log.c | |
parent | ccb54d36d93d22b00858a167beb6e0f728986b7a (diff) |
Use PascalCase for constants
Begone underscores.
Diffstat (limited to 'log.c')
-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); |