ui-patch.c: Add additional newline after each patch

For consistency with git-format-patch(1).

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2013-08-26 20:38:33 +02:00
committed by Jason A. Donenfeld
부모 334aed8ab4
커밋 840858594e
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@@ -20,7 +20,7 @@ test_expect_success 'find `Subject:` line' '
'
test_expect_success 'find `cgit` signature' '
tail -1 tmp | grep "^cgit"
tail -2 tmp | head -1 | grep "^cgit"
'
test_expect_success 'find initial commit' '
@@ -32,7 +32,7 @@ test_expect_success 'generate patch for initial commit' '
'
test_expect_success 'find `cgit` signature' '
tail -1 tmp | grep "^cgit"
tail -2 tmp | head -1 | grep "^cgit"
'
test_done