Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'maint'
* maint:
  t0050: fix printf format strings for portability
  t3419-*.sh: Fix arithmetic expansion syntax error
  • Loading branch information
Junio C Hamano committed Dec 21, 2010
2 parents 6ae7a51 + 77e5726 commit 853563d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions t/t0050-filesystem.sh
Expand Up @@ -4,8 +4,8 @@ test_description='Various filesystem issues'

. ./test-lib.sh

auml=`printf '\xc3\xa4'`
aumlcdiar=`printf '\x61\xcc\x88'`
auml=$(printf '\303\244')
aumlcdiar=$(printf '\141\314\210')

case_insensitive=
unibad=
Expand Down
4 changes: 2 additions & 2 deletions t/t3419-rebase-patch-id.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

test_description='git rebase - test patch id computation'

Expand Down Expand Up @@ -27,7 +27,7 @@ scramble()
then
echo "$x"
fi
i=$(((i+1) % 10))
i=$((($i+1) % 10))
done < "$1" > "$1.new"
mv -f "$1.new" "$1"
}
Expand Down

0 comments on commit 853563d

Please sign in to comment.