macros: fix macro for GiB
This commit is contained in:
parent
77c3e5f440
commit
13ea9ce49d
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
/* Human-readable sizes */
|
||||
#define KIB 1024
|
||||
#define MIB (1024 * KIB)
|
||||
#define GIB (1024 * GIB)
|
||||
#define GIB (1024 * MIB)
|
||||
|
||||
/* Rounding */
|
||||
#define IS_ROUND(x, k) (!((x) & ((k) - 1)))
|
||||
|
|
Loading…
Add table
Reference in a new issue