Fix typo in oversampling config check.

This commit is contained in:
Oliver Jowett 2014-12-06 22:50:55 +00:00
parent 127bf0cbc2
commit 129655625c

View file

@ -71,7 +71,7 @@ case "x$GAIN" in
*) ARGS="$ARGS --gain $GAIN" ;;
esac
if [ "x$PPM" != "x0" ]; then ARGS="$ARGS --ppm $PPM"; fi
if [ "x$OVERSAMPLE" = "yes" ]; then ARGS="$ARGS --oversample"; fi
if [ "x$OVERSAMPLE" = "xyes" ]; then ARGS="$ARGS --oversample"; fi
# decoder:
if [ "x$FIX_CRC" = "xyes" ]; then ARGS="$ARGS --fix"; fi