diff options
Diffstat (limited to 'src/doprnt.c')
-rw-r--r-- | src/doprnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doprnt.c b/src/doprnt.c index 02584554577..2fe45cf7975 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -178,7 +178,7 @@ doprnt (buffer, bufsize, format, format_end, nargs, args) /* If we had to malloc something, free it. */ if (big_buffer) - free (big_buffer); + xfree (big_buffer); *bufptr = 0; /* Make sure our string end with a '\0' */ return bufptr - buffer; |