q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=bf58531dbaacb9ff78583278b04785e85a4c34cd

commit bf58531dbaacb9ff78583278b04785e85a4c34cd
Author: Daniel Kolesa <d.kol...@samsung.com>
Date:   Sat Aug 31 14:11:48 2019 +0200

    eolian: fix validation of ownability with hashes
---
 src/lib/eolian/eo_parser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eolian/eo_parser.c b/src/lib/eolian/eo_parser.c
index 70ae08b1f8..cb806a387a 100644
--- a/src/lib/eolian/eo_parser.c
+++ b/src/lib/eolian/eo_parser.c
@@ -781,7 +781,7 @@ parse_type_void(Eo_Lexer *ls, Eina_Bool allow_ptr)
                        check_next(ls, ',');
                        def->base_type->next_type =
                          eo_lexer_type_release(ls, parse_type(ls, EINA_TRUE));
-                       if ((def->base_type->next_type->owned = 
def->base_type->move = (ls->t.kw == KW_at_owned || ls->t.kw == KW_at_move)))
+                       if ((def->base_type->next_type->owned = 
def->base_type->next_type->move = (ls->t.kw == KW_at_owned || ls->t.kw == 
KW_at_move)))
                          eo_lexer_get(ls);
                     }
                   check_match(ls, '>', '<', bline, bcol);

-- 


Reply via email to