Replace strncpy usage in favor of Strlcpy to get rid of compiler warnings.

This commit is contained in:
harry 2024-06-09 14:07:41 -04:00
parent ecbfca1084
commit eecb2e77b6
1 changed files with 3 additions and 2 deletions

View File

@ -6,6 +6,7 @@
#include "types.h"
#include "ld65dbg.h"
#include "utils/StringUtils.h"
namespace ld65
@ -304,7 +305,7 @@ namespace ld65
}
else if ( strcmp( key, "name") == 0 )
{
strncpy( name, val, sizeof(name));
Strlcpy( name, val, sizeof(name));
}
else if ( strcmp( key, "size") == 0 )
{
@ -332,7 +333,7 @@ namespace ld65
}
else if ( strcmp( key, "type") == 0 )
{
strncpy( type, val, sizeof(type));
Strlcpy( type, val, sizeof(type));
}
}