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

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

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Este commit está contenido en:
Lukas Fleischer
2013-08-26 20:38:33 +02:00
cometido por Jason A. Donenfeld
padre 334aed8ab4
commit 840858594e
Se han modificado 2 ficheros con 3 adiciones y 3 borrados

Ver fichero

@@ -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