FTDI MPSSE: Display kilohertz using SI symbol

SI symbol for kilohertz is kHz, not KHz.

Ping-Bug: 11743
Change-Id: Ie6cafd242b2e479783ecd8ab8a04c08effe23413
Reviewed-on: https://code.wireshark.org/review/38168
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Tomasz Moń 2020-08-15 17:20:16 +02:00 committed by Anders Broman
parent b85862654b
commit 5be3de0029
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ static gchar* freq_to_str(gfloat freq)
}
else if (freq < 1e6)
{
return g_strdup_printf("%.12g KHz", freq / 1e3);
return g_strdup_printf("%.12g kHz", freq / 1e3);
}
else
{