mirror of
https://github.com/anrieff/libcpuid
synced 2025-02-02 20:14:07 +00:00
typo in string
This commit is contained in:
parent
1761babac0
commit
817e453e27
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue