More fixes for zpl update...

This commit is contained in:
2023-04-19 16:57:59 -04:00
parent 69e26bbdf8
commit 4c4fe98e7e
2 changed files with 7 additions and 7 deletions

View File

@ -70,10 +70,10 @@ sw token_fmt_va( char* buf, uw buf_size, char const* fmt, s32 num_tokens, va_lis
TokEntry entry
{
value,
strnlen(value, (sw)128)
str_len(value, (sw)128)
};
u32 key = crc32( token, strnlen(token, 32) );
u32 key = crc32( token, str_len(token, 32) );
tokmap_set( & tok_map, key, entry );
}