mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
t4030-diff-textconv: Make octal escape sequence more portable
There are printfs around that do not grok '\1', but need '\01'. Discovered on AIX 4.3.x. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
11920d28da
commit
deb13872be
@ -29,7 +29,7 @@ test_expect_success 'setup binary file with history' '
|
||||
printf "\\0\\n" >file &&
|
||||
git add file &&
|
||||
git commit -m one &&
|
||||
printf "\\1\\n" >>file &&
|
||||
printf "\\01\\n" >>file &&
|
||||
git add file &&
|
||||
git commit -m two
|
||||
'
|
||||
|
Loading…
Reference in New Issue
Block a user