* eio: fix coding style, the other way.

SVN revision: 53071
This commit is contained in:
Cedric BAIL 2010-10-05 16:57:51 +00:00
parent b3d7e3423f
commit 96172a4066
2 changed files with 5 additions and 5 deletions

View File

@ -246,7 +246,7 @@ _eio_dir_copy_heavy(Ecore_Thread *thread, void *data)
}
static void
_eio_dir_copy_notify( __UNUSED__ Ecore_Thread *thread, void *msg_data, void *data)
_eio_dir_copy_notify(Ecore_Thread *thread __UNUSED__, void *msg_data, void *data)
{
Eio_Dir_Copy *copy = data;
Eio_Progress *progress = msg_data;

View File

@ -84,7 +84,7 @@ _eio_file_heavy(Ecore_Thread *thread, void *data)
}
static void
_eio_file_notify(__UNUSED__ Ecore_Thread *thread, void *msg_data, void *data)
_eio_file_notify(Ecore_Thread *thread __UNUSED__, void *msg_data, void *data)
{
Eio_File_Char_Ls *async = data;
const char *file = msg_data;
@ -139,7 +139,7 @@ _eio_file_direct_heavy(Ecore_Thread *thread, void *data)
}
static void
_eio_file_direct_notify(__UNUSED__ Ecore_Thread *thread, void *msg_data, void *data)
_eio_file_direct_notify(Ecore_Thread *thread __UNUSED__, void *msg_data, void *data)
{
Eio_File_Direct_Ls *async = data;
Eina_File_Direct_Info *info = msg_data;
@ -349,7 +349,7 @@ _eio_file_copy_heavy(Ecore_Thread *thread, void *data)
}
static void
_eio_file_copy_notify(__UNUSED__ Ecore_Thread *thread, void *msg_data, void *data)
_eio_file_copy_notify(Ecore_Thread *thread __UNUSED__, void *msg_data, void *data)
{
Eio_File_Progress *copy = data;
@ -453,7 +453,7 @@ _eio_file_move_heavy(Ecore_Thread *thread, void *data)
}
static void
_eio_file_move_notify(__UNUSED__ Ecore_Thread *thread, void *msg_data, void *data)
_eio_file_move_notify(Ecore_Thread *thread __UNUSED__, void *msg_data, void *data)
{
Eio_File_Move *move = data;