Thread (1 message) 1 message, 1 author, 2016-06-15

Re: [PATCH, nitpickingly final version] git-branch, git-checkout: autosetup for remote branch tracking

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:42:58

Paolo Bonzini [off-list ref] writes:
	This fixes all the nits you pointed out. :-D
	Now, this was an experience to make...
Thanks.

Will apply after reviewing once more tomorrow, with fix-ups
locally if needed.  No need to resend.
+
+	colon = strchr(value, ':');
+        if (!colon)
s/^\040{8}/\011/;
quoted hunk
diff --git a/trace.c b/trace.c
index 27fef86..27b2e85 100644
--- a/trace.c
+++ b/trace.c
@@ -41,13 +41,15 @@ static in...
+int nfasprintf(char **str, const char *fmt, ...)
 {
+	int rc;
+	va_list args;
+
+	va_start(args, fmt);
+	rc = nfvasprintf(str, fmt, args);
+	va_end(args);
+	return args;
 }
s/return args/return rc/;
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help