diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-12-21 14:45:28 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-21 14:45:28 -0800 |
commit | 853563d7344ee532aa56f8a9aabcfdfb5c4fe2c3 (patch) | |
tree | 8846fccf9892990d1c0e2ee4c8fb8adb918c08ec /t/t0050-filesystem.sh | |
parent | 6ae7a51a2e8efdb10c18d59693e647a73d98d9d3 (diff) | |
parent | 77e572653b5089c9e3639fe4088f59e4cfef4eea (diff) | |
download | git-853563d7344ee532aa56f8a9aabcfdfb5c4fe2c3.tar.gz |
Merge branch 'maint'
* maint:
t0050: fix printf format strings for portability
t3419-*.sh: Fix arithmetic expansion syntax error
Diffstat (limited to 't/t0050-filesystem.sh')
-rwxr-xr-x | t/t0050-filesystem.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0050-filesystem.sh b/t/t0050-filesystem.sh index 057c97c49f..1542cf6a13 100755 --- a/t/t0050-filesystem.sh +++ b/t/t0050-filesystem.sh @@ -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= |