From 14531e554cc93bbcc9bb2ff6ec3739f5bebae2e6 Mon Sep 17 00:00:00 2001 From: Gustavo Neves Date: Mon, 15 May 2017 00:37:39 -0300 Subject: [PATCH] cleanning up --- pdfScale.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pdfScale.sh b/pdfScale.sh index 90f6d5e..0a5f622 100755 --- a/pdfScale.sh +++ b/pdfScale.sh @@ -81,7 +81,7 @@ main() { vprint " Input File: $INFILEPDF" vprint " Output File: $OUTFILEPDF" getPageSize - vPrintSourcePageSizes ' Source' + vPrintPageSizes ' Source' local finalRet=$EXIT_ERROR if isMixedMode; then @@ -94,7 +94,7 @@ main() { OUTFILEPDF="$outputFile" # reset final target PGWIDTH=$RESIZE_WIDTH # we already know the new page size PGHEIGHT=$RESIZE_HEIGHT # from the last command (Resize) - vPrintSourcePageSizes ' New' + vPrintPageSizes ' New' vPrintScaleFactor pageScale # scale the resized pdf finalRet=$(($finalRet+$?)) @@ -540,7 +540,7 @@ notAdaptiveFailed() { } # Verbose print of the Width and Height (Source or New) to screen -vPrintSourcePageSizes() { +vPrintPageSizes() { vprint " $1 Width: $PGWIDTH postscript-points" vprint "$1 Height: $PGHEIGHT postscript-points" }