Patch 112 by Robert Turnbull

Remove compiler warning.
This commit is contained in:
Holger Vogt 2023-02-06 12:05:59 +01:00
parent 3ff9643f49
commit ff9c98f597
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ char *dup_string(const char *str, size_t n_char)
char *tvprintf(const char *fmt, va_list args)
{
char buf[1024];
static char buf[1024];
char *p = buf;
int size = sizeof(buf);
int nchars;