eolian: @own -> own

This commit is contained in:
Daniel Kolesa 2014-07-08 13:34:25 +01:00
parent 5bf4ae22cb
commit 826f85675c
2 changed files with 2 additions and 2 deletions

View File

@ -956,7 +956,7 @@ _print_type(FILE *f, Eo_Type_Def *tp)
Eina_List *l;
Eo_Type_Def *stp;
if (tp->is_own)
fputs("@own(", f);
fputs("own(", f);
if (tp->is_const)
fputs("const(", f);
if (tp->type == EOLIAN_TYPE_REGULAR)

View File

@ -1313,7 +1313,7 @@ _type_print(Eolian_Type tp, Eina_Strbuf *buf)
Eina_List *l;
Eolian_Type stp;
if (tpp->is_own)
eina_strbuf_append(buf, "@own(");
eina_strbuf_append(buf, "own(");
if (tpp->is_const)
eina_strbuf_append(buf, "const(");
if (tpp->type == EOLIAN_TYPE_REGULAR)