This patch fixes die() and error() to print linefeeds after the message.
Signed-Off-By: Matthias Urlichs <[EMAIL PROTECTED]>
--- 42a073eb6b5bb397a3e8768a032463a7fa02e6b9/usage.c (mode:100644
sha1:e774d2ef32726af0707d817cdb63fc8751ddc9d8)
+++ 265515f9c4f089b1b61e9d2312c4b3babe189618/usage.c (mode:100644
sha1:21715d88b1a82aa06a3914e3f0e69fb1b61cc442)
@@ -26,6 +26,7 @@
va_start(params, err);
report("fatal: ", err, params);
va_end(params);
+ fputs("\n", stderr);
exit(1);
}
@@ -36,5 +37,6 @@
va_start(params, err);
report("error: ", err, params);
va_end(params);
+ fputs("\n", stderr);
return -1;
}
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html