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/;