mirror of
https://github.com/transmission/transmission.git
synced 2026-04-26 03:40:22 +01:00
(trunk) #3045 "size units" -- sync the default units in all the apps s.t. they're consistent with each other
This commit is contained in:
24
cli/cli.c
24
cli/cli.c
@@ -45,19 +45,19 @@
|
||||
#define MEM_G_STR "GiB"
|
||||
#define MEM_T_STR "TiB"
|
||||
|
||||
#define DISK_K 1000
|
||||
#define DISK_B_STR "B"
|
||||
#define DISK_K_STR "kB"
|
||||
#define DISK_M_STR "MB"
|
||||
#define DISK_G_STR "GB"
|
||||
#define DISK_T_STR "TB"
|
||||
#define DISK_K 1024
|
||||
#define DISK_B_STR "B"
|
||||
#define DISK_K_STR "KiB"
|
||||
#define DISK_M_STR "MiB"
|
||||
#define DISK_G_STR "GiB"
|
||||
#define DISK_T_STR "TiB"
|
||||
|
||||
#define SPEED_K 1000
|
||||
#define SPEED_B_STR "B/s"
|
||||
#define SPEED_K_STR "kB/s"
|
||||
#define SPEED_M_STR "MB/s"
|
||||
#define SPEED_G_STR "GB/s"
|
||||
#define SPEED_T_STR "TB/s"
|
||||
#define SPEED_K 1024
|
||||
#define SPEED_B_STR "B/s"
|
||||
#define SPEED_K_STR "KiB/s"
|
||||
#define SPEED_M_STR "MiB/s"
|
||||
#define SPEED_G_STR "GiB/s"
|
||||
#define SPEED_T_STR "TiB/s"
|
||||
|
||||
/***
|
||||
****
|
||||
|
||||
Reference in New Issue
Block a user