We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e40f6 commit 851f271Copy full SHA for 851f271
src/detection/cpu/cpu_nbsd.c
@@ -25,11 +25,11 @@ static const char* detectCpuTemp(double* current)
25
if (!array) return "No temp data found in root dictionary";
26
27
if (prop_array_count(array) != 2)
28
- return "Unexpect `xtemp0` data";
+ return "Unexpected `xtemp0` data";
29
30
prop_dictionary_t dict = prop_array_get(array, 0);
31
if (prop_object_type(dict) != PROP_TYPE_DICTIONARY)
32
- return "Unexpect `xtemp0[0]`";
+ return "Unexpected `xtemp0[0]`";
33
34
int temp = 0; // in µK
35
if (!prop_dictionary_get_int(dict, "cur-value", &temp))
0 commit comments