ext2spice.c: printf style constify fmt call-site

This commit is contained in:
Darryl Miles 2024-10-20 13:46:02 +01:00 committed by Darryl L. Miles
parent 6520aa19a3
commit a756fe08bd
1 changed files with 3 additions and 2 deletions

View File

@ -3669,7 +3669,8 @@ spcnodeVisit(node, res, cap)
EFNodeName *nn;
HierName *hierName;
bool isConnected = FALSE;
char *fmt, *nsn;
const char *fmt;
char *nsn;
EFAttr *ap;
if (node->efnode_client)
@ -3731,7 +3732,7 @@ nodeVisitDebug(node, res, cap)
{
EFNodeName *nn;
HierName *hierName;
char *fmt, *nsn;
char *nsn;
EFAttr *ap;
hierName = (HierName *) node->efnode_name->efnn_hier;