diff options
-rwxr-xr-x | localepurge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/localepurge b/localepurge index e4699f9..fc06c7f 100755 --- a/localepurge +++ b/localepurge @@ -297,7 +297,7 @@ done # Calculating and reporting total disk space freed: if [ "$SHOWFREEDSPACE" = "enabled" ]; then - let TOTAL=$LOCALETOTAL+$MANTOTAL + TOTAL=$(($LOCALETOTAL + $MANTOTAL)) if test $TOTAL -lt 0; then TOTAL=0 fi |