fix c error in style guide

This commit is contained in:
2023-10-24 13:43:49 +02:00
parent 0d051ef3f0
commit efff4ee8d1

View File

@@ -110,7 +110,7 @@ typedef struct {
str_t s = { str_t s = {
.a = 1, .a = 1,
.b = 2, // Comma here .b = 2, // Comma here
} };
// No trailing commas - only for small and simple structures // No trailing commas - only for small and simple structures
static const str_t y = {.a = 1, .b = 2}; static const str_t y = {.a = 1, .b = 2};