Jeff King [off-list ref] writes:
quoted hunk
diff --git a/credential.c b/credential.c
new file mode 100644
index 0000000..c403289
--- /dev/null
+++ b/credential.c
...
+void credential_fill(struct credential *c, const struct string_list *methods)
+{
+ ...
+ }
+ die(err.buf);
credential.c:195: error: format not a string literal and no format arguments
This needs to be
die("%s", err.buf);