1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2025-02-02 20:14:07 +00:00

typo in string

This commit is contained in:
Barak A. Pearlmutter 2024-12-08 13:34:25 +00:00 committed by The Tumultuous Unicorn Of Darkness
parent 1761babac0
commit 817e453e27

View file

@ -513,7 +513,7 @@ void decode_architecture_version_x86(struct cpu_id_t* data)
data->feature_level = feature_level; data->feature_level = feature_level;
if (feature_level == FEATURE_LEVEL_UNKNOWN) if (feature_level == FEATURE_LEVEL_UNKNOWN)
warnf("Warning: CPU with CPUID signature %02X_%02XH has an unkown architecture version (LM=%i).\n", data->x86.ext_family, data->x86.ext_model, data->flags[CPU_FEATURE_LM]); warnf("Warning: CPU with CPUID signature %02X_%02XH has an unknown architecture version (LM=%i).\n", data->x86.ext_family, data->x86.ext_model, data->flags[CPU_FEATURE_LM]);
else else
debugf(2, "x86 architecture version is %s\n", cpu_feature_level_str(feature_level)); debugf(2, "x86 architecture version is %s\n", cpu_feature_level_str(feature_level));
} }