diff options
author | iphydf <iphydf@users.noreply.github.com> | 2020-03-14 03:37:28 +0000 |
---|---|---|
committer | iphydf <iphydf@users.noreply.github.com> | 2020-03-14 13:40:36 +0000 |
commit | 94d98ddd863279d5bf811d0107d73c373380dda2 (patch) | |
tree | 543a21f95e30c86e314dce4577f99421789bba0d /toxcore/logger.h | |
parent | cb22b3df5f0b7509a37e091360ecbb4d8a9f2873 (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.h | 2 |
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 | ||
29 | typedef struct Logger Logger; | 29 | typedef struct Logger Logger; |