From: Mark Wooding Date: Sat, 18 Mar 2023 14:11:13 +0000 (+0000) Subject: bin/xzoomscr: Remove spaces around multiplicative operators. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/4cc1582bb02ad2771b491767882812eb0aca7015 bin/xzoomscr: Remove spaces around multiplicative operators. As is my current style. --- diff --git a/bin/xzoomscr b/bin/xzoomscr index 6add5fa..b9551d8 100755 --- a/bin/xzoomscr +++ b/bin/xzoomscr @@ -17,7 +17,7 @@ DISPLAY=$dpybase.$scr; export DISPLAY eval $(xscsize -b) -case $(( $XWIDTH % $zoom || $XHEIGHT % $zoom )) in +case $(( $XWIDTH%$zoom || $XHEIGHT%$zoom )) in 0) ;; *) echo >&2 "$0: zoom multiplier doesn't divide screen size"; exit 2 ;; esac