* eio: break Eio error callback API to match the rest of the API.

SVN revision: 53986
This commit is contained in:
Cedric BAIL 2010-10-29 12:36:43 +00:00
parent 11487fbdb5
commit 063248da8f
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ _populate_end(void *data)
}
static void
_populate_error(int error, void *data)
_populate_error(void *data, int error)
{
Ephoto_Directory_Thumb *dt = data;
if (error) ERR("could not populate: %s", strerror(error));

View File

@ -325,7 +325,7 @@ _ephoto_populate_end(void *data)
}
static void
_ephoto_populate_error(int error, void *data)
_ephoto_populate_error(void *data, int error)
{
Ephoto_Thumb_Browser *tb = data;
if (error) ERR("could not populate: %s", strerror(error));