diff options
Diffstat (limited to 'gdb/gstack-1.in')
-rwxr-xr-x | gdb/gstack-1.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gstack-1.in b/gdb/gstack-1.in index 25339d9..ac5e8d4 100755 --- a/gdb/gstack-1.in +++ b/gdb/gstack-1.in @@ -64,7 +64,7 @@ function print_version() { while getopts hv-: OPT; do if [ "$OPT" = "-" ]; then OPT="${OPTARG%%=*}" - OPTARG="${OPTARG#'$OPT'}" + OPTARG="${OPTARG#"$OPT"}" OPTARG="${OPTARG#=}" fi @@ -132,6 +132,7 @@ EOF ) # Run GDB and remove some unwanted noise. +# shellcheck disable=SC2086 "$GDB" --quiet -nx $GDBARGS <<EOF | set width 0 set height 0 |