From 9f26b3c6a8cdaa3275ab2455be8cb51e3918a43f Mon Sep 17 00:00:00 2001 From: Danixu Date: Sun, 22 Aug 2021 09:17:51 +0200 Subject: [PATCH] Changed sucessfully message --- ecmtool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecmtool.cpp b/ecmtool.cpp index 7256a6b..3da6008 100644 --- a/ecmtool.cpp +++ b/ecmtool.cpp @@ -552,7 +552,7 @@ static ecmtool_return_code ecmify( } if (!return_code) { - fprintf(stdout, "\n\nFinished!\n"); + fprintf(stdout, "\n\nEncoding was finished sucessfully!\n"); } else { fprintf(stderr, "\n\nThere was an error processing the input file: %d\n\n", return_code); @@ -755,7 +755,7 @@ static ecmtool_return_code unecmify( // If something went wrong, inform the user and delete the output file if (!return_code) { - fprintf(stdout, "\n\nDecoding finished correctly!\n\n"); + fprintf(stdout, "\n\nDecoding was finished sucessfully!\n\n"); fprintf(stdout, "Sumary:\n"); fprintf(stdout, "\tECM Size: %d bytes \t -> \tOriginal size: %d bytes\n\n", in_size, out_size); }