From 1c91a7d5d915eefeb78f4d7549e62361437e942a Mon Sep 17 00:00:00 2001 From: Eric Tang Date: Tue, 8 Aug 2017 17:44:57 -0700 Subject: [PATCH] Move the opening brace of ParseKeymap onto its own line and remove a stray semicolon --- right/src/config_parser/parse_keymap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/right/src/config_parser/parse_keymap.c b/right/src/config_parser/parse_keymap.c index c2e1ca6..dc80e12 100644 --- a/right/src/config_parser/parse_keymap.c +++ b/right/src/config_parser/parse_keymap.c @@ -191,7 +191,8 @@ static parser_error_t parseLayer(config_buffer_t *buffer, uint8_t layer) return ParserError_Success; } -parser_error_t ParseKeymap(config_buffer_t *buffer, uint8_t keymapIdx, uint8_t keymapCount) {; +parser_error_t ParseKeymap(config_buffer_t *buffer, uint8_t keymapIdx, uint8_t keymapCount) +{ uint16_t offset = buffer->offset; parser_error_t errorCode; uint16_t abbreviationLen;