From 1bdb8298d05e382bc6f78c24c3d80e571dd941ed Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Mon, 10 Aug 2015 12:44:02 +0300 Subject: [PATCH] util: Fix mega/giga typos Signed-off-by: Cyrill Gorcunov Signed-off-by: Pavel Emelyanov --- include/util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/util.h b/include/util.h index 7e70a71a5..f2300a95f 100644 --- a/include/util.h +++ b/include/util.h @@ -31,8 +31,8 @@ #define GBYTES(size) PREF_SHIFT_OP(G, >>, size) #define KILO(size) PREF_SHIFT_OP(K, <<, size) -#define MEGA(size) PREF_SHIFT_OP(K, <<, size) -#define GIGA(size) PREF_SHIFT_OP(K, <<, size) +#define MEGA(size) PREF_SHIFT_OP(M, <<, size) +#define GIGA(size) PREF_SHIFT_OP(G, <<, size) struct vma_area; struct list_head;