eina/examples: Return in a non-void function.

Reported by Simotek. Thanks!
This commit is contained in:
Stefan Schmidt 2013-03-28 10:55:05 +00:00
parent 1f1704924d
commit 911dc0f2a9
1 changed files with 2 additions and 0 deletions

View File

@ -24,6 +24,8 @@ person_new(const char *name)
person *ptr = malloc(sizeof(person));
EINA_MAGIC_SET(ptr, BASETYPE_MAGIC);
ptr->name = strdup(name);
return ptr;
}
void