summaryrefslogtreecommitdiff
path: root/toxcore/logger.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-03-14 03:37:28 +0000
committeriphydf <iphydf@users.noreply.github.com>2020-03-14 13:40:36 +0000
commit94d98ddd863279d5bf811d0107d73c373380dda2 (patch)
tree543a21f95e30c86e314dce4577f99421789bba0d /toxcore/logger.h
parentcb22b3df5f0b7509a37e091360ecbb4d8a9f2873 (diff)
Standardise on having a comma at the end of enums.
Most of our enums already have one. Some didn't. Tokstyle is going to require commas at the end of enumerator lists in enum definitions.
Diffstat (limited to 'toxcore/logger.h')
-rw-r--r--toxcore/logger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/logger.h b/toxcore/logger.h
index d2be3401..cbd8752b 100644
--- a/toxcore/logger.h
+++ b/toxcore/logger.h
@@ -23,7 +23,7 @@ typedef enum Logger_Level {
23 LOGGER_LEVEL_DEBUG, 23 LOGGER_LEVEL_DEBUG,
24 LOGGER_LEVEL_INFO, 24 LOGGER_LEVEL_INFO,
25 LOGGER_LEVEL_WARNING, 25 LOGGER_LEVEL_WARNING,
26 LOGGER_LEVEL_ERROR 26 LOGGER_LEVEL_ERROR,
27} Logger_Level; 27} Logger_Level;
28 28
29typedef struct Logger Logger; 29typedef struct Logger Logger;