Skip to content

Commit

Permalink
typo in string
Browse files Browse the repository at this point in the history
  • Loading branch information
barak authored and TheTumultuousUnicornOfDarkness committed Dec 8, 2024
1 parent 1761bab commit 817e453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcpuid/libcpuid_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ void decode_architecture_version_x86(struct cpu_id_t* data)

data->feature_level = feature_level;
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
debugf(2, "x86 architecture version is %s\n", cpu_feature_level_str(feature_level));
}

0 comments on commit 817e453

Please sign in to comment.