33 lines
1012 B
Diff
33 lines
1012 B
Diff
From c7471d8b3d4e796eee8ae041e5cbb55c5619318e Mon Sep 17 00:00:00 2001
|
|
From: Karel Zak <kzak@redhat.com>
|
|
Date: Wed, 19 Oct 2022 11:24:30 +0200
|
|
Subject: [PATCH] libblkid: cleanup indentation
|
|
|
|
Signed-off-by: Karel Zak <kzak@redhat.com>
|
|
---
|
|
libblkid/src/superblocks/jmicron_raid.c | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/libblkid/src/superblocks/jmicron_raid.c b/libblkid/src/superblocks/jmicron_raid.c
|
|
index 9ef8cd3f8..ab2c829f0 100644
|
|
--- a/libblkid/src/superblocks/jmicron_raid.c
|
|
+++ b/libblkid/src/superblocks/jmicron_raid.c
|
|
@@ -17,10 +17,10 @@
|
|
#include "superblocks.h"
|
|
|
|
#define JM_SIGNATURE "JM"
|
|
-#define JM_MINOR_VERSION(_x) ((_x)->version & 0xFF)
|
|
-#define JM_MAJOR_VERSION(_x) ((_x)->version >> 8)
|
|
-#define JM_SPARES 2
|
|
-#define JM_MEMBERS 8
|
|
+#define JM_MINOR_VERSION(_x) ((_x)->version & 0xFF)
|
|
+#define JM_MAJOR_VERSION(_x) ((_x)->version >> 8)
|
|
+#define JM_SPARES 2
|
|
+#define JM_MEMBERS 8
|
|
|
|
struct jm_metadata {
|
|
int8_t signature[2]; /* 0x0 - 0x01 */
|
|
--
|
|
2.27.0
|
|
|