diff options
author | Cedric Bail <cedric@osg.samsung.com> | 2017-03-06 17:03:03 -0800 |
---|---|---|
committer | Cedric Bail <cedric@osg.samsung.com> | 2017-03-06 17:03:19 -0800 |
commit | 500401364dbff5d6f674b3f8de075a20f48de3f7 (patch) | |
tree | 03b8070076195bd41ff7fb325e00acdb50625cbf /src/lib | |
parent | ccbab08a4b2fe2ea693dc5ba3d83c9e9b1a42aa9 (diff) |
elementary: fix tests build.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/elementary/elm_code_parse.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_code_parse.c b/src/lib/elementary/elm_code_parse.c index 8f7243df2a..f4eac48595 100644 --- a/src/lib/elementary/elm_code_parse.c +++ b/src/lib/elementary/elm_code_parse.c | |||
@@ -150,9 +150,13 @@ _elm_code_parser_syntax_parse_file(Elm_Code_File *file, void *data EINA_UNUSED) | |||
150 | 150 | ||
151 | syntax = elm_code_syntax_for_mime_get(file->mime); | 151 | syntax = elm_code_syntax_for_mime_get(file->mime); |
152 | if (!syntax) | 152 | if (!syntax) |
153 | WRN("Unsupported mime in parser"); | 153 | { |
154 | WRN("Unsupported mime in parser"); | ||
155 | } | ||
154 | else | 156 | else |
155 | elm_code_syntax_parse_file(syntax, file); | 157 | { |
158 | elm_code_syntax_parse_file(syntax, file); | ||
159 | } | ||
156 | } | 160 | } |
157 | 161 | ||
158 | static void | 162 | static void |