* eina: little doxy fix.

Thanks to kuri <kuri@paranoia.abuser.eu>


SVN revision: 54398
This commit is contained in:
Cedric BAIL 2010-11-10 10:54:53 +00:00
parent 44ce55c909
commit 759d4efaec
1 changed files with 3 additions and 3 deletions

View File

@ -1445,10 +1445,10 @@ eina_list_clone(const Eina_List *list)
* const char *txt = NULL; * const char *txt = NULL;
* const char *txt2 = NULL; * const char *txt2 = NULL;
* *
* if(!d1) return(1); * if(!txt) return(1);
* if(!d2) return(-1); * if(!txt2) return(-1);
* *
* return(strcmp((const char*)d1, (const char*)d2)); * return(strcmp(txt, txt2));
* } * }
* extern Eina_List *list; * extern Eina_List *list;
* *