diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-11-04 14:58:10 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-11-04 14:58:10 -0800 |
commit | d35a42a62e6e710f34f0c6f81d3da644a7bbc2dd (patch) | |
tree | 83520303ccb37e5b803bdfbc37e17f90ab285dba | |
parent | 59c21d17890476550755ff16636208fd3c9d0fd9 (diff) | |
parent | fbc812a6009ebc91f4870c3572821cb4d68184f8 (diff) | |
download | git-d35a42a62e6e710f34f0c6f81d3da644a7bbc2dd.tar.gz |
Merge branch 'jk/duplicate-objects-in-packs'
Test fixup to a topic recently graduated.
* jk/duplicate-objects-in-packs:
Fix '\%o' for printf from coreutils
-rw-r--r-- | t/lib-pack.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/lib-pack.sh b/t/lib-pack.sh index 7e8685b44c..b96e1254dd 100644 --- a/t/lib-pack.sh +++ b/t/lib-pack.sh @@ -12,10 +12,10 @@ # Print the big-endian 4-byte octal representation of $1 uint32_octal () { n=$1 - printf '\%o' $(($n / 16777216)); n=$((n % 16777216)) - printf '\%o' $(($n / 65536)); n=$((n % 65536)) - printf '\%o' $(($n / 256)); n=$((n % 256)) - printf '\%o' $(($n )); + printf '\\%o' $(($n / 16777216)); n=$((n % 16777216)) + printf '\\%o' $(($n / 65536)); n=$((n % 65536)) + printf '\\%o' $(($n / 256)); n=$((n % 256)) + printf '\\%o' $(($n )); } # Print the big-endian 4-byte binary representation of $1 |