diff options
author | Hristo Kovachev <bger@rockbox.org> | 2006-08-16 09:15:40 +0000 |
---|---|---|
committer | Hristo Kovachev <bger@rockbox.org> | 2006-08-16 09:15:40 +0000 |
commit | 1dc62dfc6b004786ca73fbee13554929bd221c8a (patch) | |
tree | 3f3e1f917459f0ce86d790a7b011fb5e0e319df4 | |
parent | f787242704447c601ba3256fb38982aceb9764ec (diff) |
Okay, use µs instead of us
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10607 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index ed9d7231a9..09b9ac5559 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1491,7 +1491,7 @@ bool dbg_mmc_info(void) static const unsigned char i_vmin[] = { 0, 1, 5, 10, 25, 35, 60, 100 }; static const unsigned char i_vmax[] = { 1, 5, 10, 25, 35, 45, 80, 200 }; static const unsigned char *kbit_units[] = { "kBit/s", "MBit/s", "GBit/s" }; - static const unsigned char *nsec_units[] = { "ns", "us", "ms" }; + static const unsigned char *nsec_units[] = { "ns", "µs", "ms" }; card_name[6] = '\0'; |