* eina: Fix typo.

SVN revision: 41762
This commit is contained in:
Cedric BAIL 2009-08-14 14:22:25 +00:00
parent 09012c96bb
commit c634e07770
1 changed files with 2 additions and 2 deletions

View File

@ -259,14 +259,14 @@ eina_rectangle_init(void)
sizeof (Eina_Rectangle_Alloc) + sizeof (Eina_Rectangle), 1024);
if (!_eina_rectangle_alloc_mp)
{
EINA_ERROR_PERR("ERROR: Mempool for rectangle cannot be allocated in list init.\n");
EINA_ERROR_PERR("ERROR: Mempool for rectangle cannot be allocated in rectangle init.\n");
goto init_error;
}
_eina_rectangle_mp = eina_mempool_add(choice, "rectangle", NULL, sizeof (Eina_Rectangle), 256);
if (!_eina_rectangle_mp)
{
EINA_ERROR_PERR("ERROR: Mempool for rectangle cannot be allocated in list init.\n");
EINA_ERROR_PERR("ERROR: Mempool for rectangle cannot be allocated in rectangle init.\n");
goto init_error;
}