summaryrefslogtreecommitdiff
path: root/src/print_mem.c
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-05-01 19:09:35 +0200
committerOrestis Floros <orestisflo@gmail.com>2020-05-01 19:09:35 +0200
commit24c417966e8a7b19ad1d4dbb1f5ad684b7e29da5 (patch)
tree35899e5e7d9c0c627232619f419ca1c684a6a242 /src/print_mem.c
parenta1ed46a18a621008e36a3e6b26670f33ab031e0b (diff)
Fix fall-through warnings
Diffstat (limited to 'src/print_mem.c')
-rw-r--r--src/print_mem.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/print_mem.c b/src/print_mem.c
index 941c9d9..4a521d7 100644
--- a/src/print_mem.c
+++ b/src/print_mem.c
@@ -62,12 +62,15 @@ static unsigned long memory_absolute(const char *mem_amount, const unsigned long
case 'T':
case 't':
amount *= BINARY_BASE;
+ /* fall-through */
case 'G':
case 'g':
amount *= BINARY_BASE;
+ /* fall-through */
case 'M':
case 'm':
amount *= BINARY_BASE;
+ /* fall-through */
case 'K':
case 'k':
amount *= BINARY_BASE;