Unverified Commit 41578bef authored by Jan Schlüter's avatar Jan Schlüter Committed by GitHub
Browse files

Fix misnamed argument in vsnprintf implementation

1 merge request!63Fix misnamed argument in vsnprintf implementation
Pipeline #1118 failed with stages
Showing with 1 addition and 1 deletion
+1 -1
...@@ -138,7 +138,7 @@ estr_writev (const struct iovec *iov, int iovcnt) ...@@ -138,7 +138,7 @@ estr_writev (const struct iovec *iov, int iovcnt)
#ifndef HAVE_VSNPRINTF #ifndef HAVE_VSNPRINTF
static int static int
gf_vsnprintf (char *str, size_t size, const char *format, va_list ap) gf_vsnprintf (char *buffer, size_t size, const char *format, va_list ap)
{ {
int written; int written;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment