q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=fff83acef311c1dbf99a5bb27ce2dbdccfc6cc93
commit fff83acef311c1dbf99a5bb27ce2dbdccfc6cc93 Author: Daniel Kolesa <[email protected]> Date: Thu Feb 12 11:19:24 2015 +0000 eolian: check the other boolean rather than itself --- 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 07e3754..884302e 100644 --- a/src/lib/eolian/eo_parser.c +++ b/src/lib/eolian/eo_parser.c @@ -1146,7 +1146,7 @@ parse_param(Eo_Lexer *ls, Eina_List **params, Eina_Bool allow_inout, eo_lexer_get(ls); break; case KW_at_nullable: - if (has_nullable) + if (has_nonull) eo_lexer_syntax_error(ls, "both nullable and nonull specified"); CASE_LOCK(ls, nullable, "c_only qualifier"); eo_lexer_get(ls); --
