diff options
Diffstat (limited to 'gpgme/vasprintf.c')
| -rw-r--r-- | gpgme/vasprintf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gpgme/vasprintf.c b/gpgme/vasprintf.c index d8275f65..77113a31 100644 --- a/gpgme/vasprintf.c +++ b/gpgme/vasprintf.c @@ -43,13 +43,13 @@ Boston, MA 02111-1307, USA. */ int global_total_width; #endif -static int int_vasprintf (char **, const char *, va_list); +static int int_vasprintf (char **, const char *, va_list *); static int int_vasprintf (result, format, args) char **result; const char *format; - va_list args; + va_list *args; { const char *p = format; /* Add one to make sure that it is never zero, which might cause malloc @@ -57,7 +57,7 @@ int_vasprintf (result, format, args) int total_width = strlen (format) + 1; va_list ap; - va_copy (ap, args); + va_copy (ap, *args); while (*p != '\0') { @@ -130,7 +130,7 @@ int_vasprintf (result, format, args) #endif *result = malloc (total_width); if (*result != NULL) - return vsprintf (*result, format, args); + return vsprintf (*result, format, *args); else return 0; } |
