From 7cca2d1c6398f9b80f7162bceb87c644effb7c0d Mon Sep 17 00:00:00 2001 From: Gollu Appalanaidu Date: Sun, 14 Feb 2021 10:49:45 +0530 Subject: [PATCH] nvme-print: add one space around the operators Signed-off-by: Gollu Appalanaidu --- nvme-print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvme-print.c b/nvme-print.c index bda75acb..1ac99a9f 100644 --- a/nvme-print.c +++ b/nvme-print.c @@ -5008,7 +5008,7 @@ static const char *nvme_feature_lba_type_to_string(__u8 type) case 3: return "Cache"; case 4: return "Page / Swap file"; default: - if (type>=0x05 && type<=0x7f) + if (type >= 0x05 && type <= 0x7f) return "Reserved"; else return "Vendor Specific"; -- 2.50.1