diff options
Diffstat (limited to 'common/membuf.c')
-rw-r--r-- | common/membuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/membuf.c b/common/membuf.c index 6c9fee957..cc7772f29 100644 --- a/common/membuf.c +++ b/common/membuf.c @@ -132,7 +132,7 @@ put_membuf_printf (membuf_t *mb, const char *format, ...) char *buf; va_start (arg_ptr, format); - rc = estream_vasprintf (&buf, format, arg_ptr); + rc = gpgrt_vasprintf (&buf, format, arg_ptr); if (rc < 0) mb->out_of_core = errno ? errno : ENOMEM; va_end (arg_ptr); |