tclmagic.c: printf style constify fmt call-site

This commit is contained in:
Darryl Miles 2024-10-20 13:34:42 +01:00 committed by Darryl L. Miles
parent 5770da2abd
commit 0259fdc990
1 changed files with 1 additions and 1 deletions

View File

@ -1028,7 +1028,7 @@ TxFlush()
/*--------------------------------------------------------------*/
int
Tcl_printf(FILE *f, char *fmt, va_list args_in)
Tcl_printf(FILE *f, const char *fmt, va_list args_in)
{
va_list args;
static char outstr[128] = "puts -nonewline std";