summaryrefslogtreecommitdiff
path: root/f2fs_utils
diff options
context:
space:
mode:
authorChinwen Chang <chinwen.chang@mediatek.com>2024-01-22 16:31:18 +0800
committerMugaChi <muga.chi@mediatek.com>2024-01-22 16:42:33 +0800
commit465a936e1f4e210b777224a63d4fcfa98355fa9a (patch)
treef75e3c0e7725f9d6587c33cf1f33188c6d4fdf29 /f2fs_utils
parentb0bb4d345b84141954d8f6e92603891a030ce70c (diff)
downloadextras-465a936e1f4e210b777224a63d4fcfa98355fa9a.tar.gz
f2fs_utils: remove blanks around the assignment
Blanks are forbidden around "+=" operator, so remove them. Bug: 299403996 Change-Id: I1c30a52ac836c4e3bc47a5c9404ebc57ae871b03 Signed-off-by: Chinwen Chang <chinwen.chang@mediatek.com>
Diffstat (limited to 'f2fs_utils')
-rwxr-xr-xf2fs_utils/mkf2fsuserimg.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/f2fs_utils/mkf2fsuserimg.sh b/f2fs_utils/mkf2fsuserimg.sh
index 5ce0497e..4290c50b 100755
--- a/f2fs_utils/mkf2fsuserimg.sh
+++ b/f2fs_utils/mkf2fsuserimg.sh
@@ -139,8 +139,8 @@ if [[ "$1" == "-b" ]]; then
exit 3 ;;
esac
shift
- MKFS_OPTS += " -b $BLOCKSIZE"
- MKFS_OPTS += " -w $BLOCKSIZE"
+ MKFS_OPTS+=" -b $BLOCKSIZE"
+ MKFS_OPTS+=" -w $BLOCKSIZE"
fi
if [ -z $SIZE ]; then