From bab94584b1b815c184791ca0afa32364057078e4 Mon Sep 17 00:00:00 2001 From: "Valeriano A.R" Date: Sat, 5 May 2018 20:00:29 +0200 Subject: [PATCH] Put a dot before accion when only printing. --- src/actionfilenode.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/actionfilenode.c b/src/actionfilenode.c index a341a77..b3e2603 100644 --- a/src/actionfilenode.c +++ b/src/actionfilenode.c @@ -217,28 +217,28 @@ void ActionFileNode_Print(ActionFileNode actionFileNode) { // printff("%s == %s\n",pathIzq,pathDer); break; case ActionFileCmp_LeftToRight: - Print(" => %s\n", showPath); + Print(". => %s\n", showPath); break; case ActionFileCmp_RightToLeft: - Print(" <= %s\n", showPath); + Print(". <= %s\n", showPath); break; case ActionFileCmp_DeleteLeft: - Print(" *- %s\n", showPath); + Print(". *- %s\n", showPath); break; case ActionFileCmp_DeleteRight: - Print(" -* %s\n", showPath); + Print(". -* %s\n", showPath); break; case ActionFileCmp_DateLeftToRight: - Print(" -> %s\n", showPath); + Print(". -> %s\n", showPath); break; case ActionFileCmp_DateRightToLeft: - Print(" <- %s\n", showPath); + Print(". <- %s\n", showPath); break; case ActionFileCmp_MakeRightDirectory: - Print(" -D %s\n", showPath); + Print(". -D %s\n", showPath); break; case ActionFileCmp_MakeLeftDirectory: - Print(" D- %s\n", showPath); + Print(". D- %s\n", showPath); break; }