From b7dc8335dd75bbd8f46448110bf28558782f9a88 Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Wed, 28 Oct 2015 16:11:31 +0100 Subject: [PATCH] gmio_core/internal: fix GCC compilation error --- src/gmio_core/internal/string_parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gmio_core/internal/string_parse.h b/src/gmio_core/internal/string_parse.h index f8c02db..3de52e1 100644 --- a/src/gmio_core/internal/string_parse.h +++ b/src/gmio_core/internal/string_parse.h @@ -77,7 +77,7 @@ enum gmio_eat_word_error { GMIO_EAT_WORD_ERROR_OK = 0, GMIO_EAT_WORD_ERROR_EMPTY, - GMIO_EAT_WORD_ERROR_CAPACITY_OVERFLOW, + GMIO_EAT_WORD_ERROR_CAPACITY_OVERFLOW }; typedef enum gmio_eat_word_error gmio_eat_word_error_t;