fix type and indentation

This commit is contained in:
Christian Grothoff 2019-10-29 17:56:00 +01:00
parent 55dd10e947
commit 36efe024f5
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -366,7 +366,7 @@ TALER_url_absolute_raw_va (const char *proto,
size_t len = 0; size_t len = 0;
va_list args2; va_list args2;
len += strlen (proto) + strlen( "://") + strlen (host); len += strlen (proto) + strlen ("://") + strlen (host);
len += strlen (prefix) + strlen (path); len += strlen (prefix) + strlen (path);
va_copy (args2, args); va_copy (args2, args);
@ -725,9 +725,11 @@ TALER_buffer_write_fstr (struct TALER_Buffer *buf, const char *fmt, ...)
* @param args format argument list * @param args format argument list
*/ */
void void
TALER_buffer_write_vfstr (struct TALER_Buffer *buf, const char *fmt, va_list args) TALER_buffer_write_vfstr (struct TALER_Buffer *buf,
const char *fmt,
va_list args)
{ {
size_t res; int res;
va_list args2; va_list args2;
va_copy (args2, args); va_copy (args2, args);