formatting

SVN revision: 72392
This commit is contained in:
Mike Blumenkrantz 2012-06-18 12:49:07 +00:00
parent 3d5b67d428
commit bd73abaffa
1 changed files with 368 additions and 362 deletions

View File

@ -163,9 +163,12 @@ main(int argc, char **argv)
i = 2;
if (!strcmp(argv[1], "cp")) type = E_FM_OP_COPY;
else if (!strcmp(argv[1], "mv")) type = E_FM_OP_MOVE;
else if (!strcmp(argv[1], "rm")) type = E_FM_OP_REMOVE;
else if (!strcmp(argv[1], "lns")) type = E_FM_OP_SYMLINK;
else if (!strcmp(argv[1], "mv"))
type = E_FM_OP_MOVE;
else if (!strcmp(argv[1], "rm"))
type = E_FM_OP_REMOVE;
else if (!strcmp(argv[1], "lns"))
type = E_FM_OP_SYMLINK;
else return 0;
if ((type == E_FM_OP_COPY) ||
@ -487,6 +490,7 @@ _e_fm_op_stdin_data(void *data __UNUSED__, Ecore_Fd_Handler * fd_handler)
_e_fm_op_abort = 1;
E_FM_OP_DEBUG("Aborted.\n");
break;
case E_FM_OP_ERROR_RESPONSE_ABORT:
case E_FM_OP_ERROR_RESPONSE_IGNORE_THIS:
case E_FM_OP_ERROR_RESPONSE_IGNORE_ALL:
@ -494,6 +498,7 @@ _e_fm_op_stdin_data(void *data __UNUSED__, Ecore_Fd_Handler * fd_handler)
_e_fm_op_error_response = identity;
_e_fm_op_set_up_idlers();
break;
case E_FM_OP_OVERWRITE_RESPONSE_NO:
case E_FM_OP_OVERWRITE_RESPONSE_NO_ALL:
case E_FM_OP_OVERWRITE_RESPONSE_YES:
@ -1530,3 +1535,4 @@ _e_fm_op_remove_atom(E_Fm_Op_Task * task)
return 1;
}