Skip to content

Commit

Permalink
fixed qarg
Browse files Browse the repository at this point in the history
  • Loading branch information
brtnfld committed Apr 9, 2024
1 parent 10df85e commit d3bfa81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/h5cc.in
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ for arg in $@ ; do
misc_args="$misc_args $qarg"
;;
*)
misc_args="$misc_args $qarg"
misc_args="$misc_args $arg"
if test -s "$arg"; then
ext=`expr "$arg" : '.*\(\..*\)'`

Expand Down
2 changes: 1 addition & 1 deletion c++/src/h5c++.in
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ for arg in $@ ; do
;;

*)
misc_args="$misc_args $qarg"
misc_args="$misc_args $arg"
if [ -s "$arg" ] ; then
ext=`expr "$arg" : '.*\(\..*\)'`
if [ "$ext" = ".C" -o "$ext" = ".cxx" -o "$ext" = ".cpp" -o \
Expand Down

0 comments on commit d3bfa81

Please sign in to comment.