From: Sami Kerola Date: Thu, 5 Apr 2018 19:56:56 +0000 (+0100) Subject: bash-completion: fix typo in blockdev file X-Git-Tag: v2.33-rc1~326 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27ea4deb93a15e701d1a1fd791f70677c579b947;p=thirdparty%2Futil-linux.git bash-completion: fix typo in blockdev file Signed-off-by: Sami Kerola --- diff --git a/bash-completion/blockdev b/bash-completion/blockdev index 8050c0f839..e7aca26de7 100644 --- a/bash-completion/blockdev +++ b/bash-completion/blockdev @@ -33,7 +33,7 @@ _blockdev_module() COMPREPLY=( $(compgen -W "bytes" -- $cur) ) return 0 ;; - '--setbsz'|'--setfra') + '--setra'|'--setfra') COMPREPLY=( $(compgen -W "sectors" -- $cur) ) return 0 ;;