Fix spelling of MHz

pull/1124/head
Timo Juhani Lindfors 7 years ago
parent 922fea7616
commit 289744e7a3

@ -384,7 +384,7 @@ static int hm_SYSFS_get_pp_dpm_sclk (hashcat_ctx_t *hashcat_ctx, const int devic
int profile = 0;
int rc = sscanf (ptr, "%d: %dMhz", &profile, &clockfreq);
int rc = sscanf (ptr, "%d: %dMHz", &profile, &clockfreq);
if (rc == 2) break;
}
@ -439,7 +439,7 @@ static int hm_SYSFS_get_pp_dpm_mclk (hashcat_ctx_t *hashcat_ctx, const int devic
int profile = 0;
int rc = sscanf (ptr, "%d: %dMhz", &profile, &clockfreq);
int rc = sscanf (ptr, "%d: %dMHz", &profile, &clockfreq);
if (rc == 2) break;
}

@ -1624,12 +1624,12 @@ char *status_get_hwmon_dev (const hashcat_ctx_t *hashcat_ctx, const int device_i
if (num_corespeed >= 0)
{
output_len += snprintf (output_buf + output_len, HCBUFSIZ_TINY - output_len, "Core:%4dMhz ", num_corespeed);
output_len += snprintf (output_buf + output_len, HCBUFSIZ_TINY - output_len, "Core:%4dMHz ", num_corespeed);
}
if (num_memoryspeed >= 0)
{
output_len += snprintf (output_buf + output_len, HCBUFSIZ_TINY - output_len, "Mem:%4dMhz ", num_memoryspeed);
output_len += snprintf (output_buf + output_len, HCBUFSIZ_TINY - output_len, "Mem:%4dMHz ", num_memoryspeed);
}
if (num_buslanes >= 0)

Loading…
Cancel
Save