diff options
Diffstat (limited to 'source4/lib/talloc.c')
-rw-r--r-- | source4/lib/talloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/lib/talloc.c b/source4/lib/talloc.c index 036d06a2c2..e9fd7e8baf 100644 --- a/source4/lib/talloc.c +++ b/source4/lib/talloc.c @@ -395,8 +395,7 @@ char *talloc_strndup(void *t, const char *p, size_t n) return ret; } -static char *talloc_vasprintf(void *t, const char *fmt, va_list ap) PRINTF_ATTRIBUTE(2,0); -static char *talloc_vasprintf(void *t, const char *fmt, va_list ap) +char *talloc_vasprintf(void *t, const char *fmt, va_list ap) { int len; char *ret; |