gumbo-parser/src/util.c in nokogumbo-1.4.2 vs gumbo-parser/src/util.c in nokogumbo-1.4.3
- old
+ new
@@ -27,10 +27,10 @@
#include "parser.h"
// TODO(jdtang): This should be elsewhere, but there's no .c file for
// SourcePositions and yet the constant needs some linkage, so this is as good
// as any.
-const GumboSourcePosition kGumboEmptySourcePosition = { 0, 0, 0 };
+const GumboSourcePosition kGumboEmptySourcePosition = {0, 0, 0};
void* gumbo_parser_allocate(GumboParser* parser, size_t num_bytes) {
return parser->_options->allocator(parser->_options->userdata, num_bytes);
}