bin/xzoomscr: Remove spaces around multiplicative operators.
[profile] / bin / xzoomscr
index 6add5fa..b9551d8 100755 (executable)
@@ -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