Paolo Bonzini <paolo.bonzini@xxxxxxxxxxx> 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/; > 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/; - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html