LIBtextio.c: printf style constify fmt call-site

This commit is contained in:
Darryl Miles 2024-10-20 13:35:53 +01:00 committed by Darryl L. Miles
parent ff73a1328f
commit c4373d74aa
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ TxFlush()
*/
void
TxError(char *fmt, ...)
TxError(const char *fmt, ...)
{
va_list ap;
@ -126,7 +126,7 @@ TxError(char *fmt, ...)
*/
void
TxPrintf(char *fmt, ...)
TxPrintf(const char *fmt, ...)
{
va_list ap;