Put a dot before accion when only printing.
This commit is contained in:
@@ -217,28 +217,28 @@ void ActionFileNode_Print(ActionFileNode actionFileNode) {
|
|||||||
// printff("%s == %s\n",pathIzq,pathDer);
|
// printff("%s == %s\n",pathIzq,pathDer);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_LeftToRight:
|
case ActionFileCmp_LeftToRight:
|
||||||
Print(" => %s\n", showPath);
|
Print(". => %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_RightToLeft:
|
case ActionFileCmp_RightToLeft:
|
||||||
Print(" <= %s\n", showPath);
|
Print(". <= %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_DeleteLeft:
|
case ActionFileCmp_DeleteLeft:
|
||||||
Print(" *- %s\n", showPath);
|
Print(". *- %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_DeleteRight:
|
case ActionFileCmp_DeleteRight:
|
||||||
Print(" -* %s\n", showPath);
|
Print(". -* %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_DateLeftToRight:
|
case ActionFileCmp_DateLeftToRight:
|
||||||
Print(" -> %s\n", showPath);
|
Print(". -> %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_DateRightToLeft:
|
case ActionFileCmp_DateRightToLeft:
|
||||||
Print(" <- %s\n", showPath);
|
Print(". <- %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_MakeRightDirectory:
|
case ActionFileCmp_MakeRightDirectory:
|
||||||
Print(" -D %s\n", showPath);
|
Print(". -D %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
case ActionFileCmp_MakeLeftDirectory:
|
case ActionFileCmp_MakeLeftDirectory:
|
||||||
Print(" D- %s\n", showPath);
|
Print(". D- %s\n", showPath);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user