From 522af0ff51276a2143ec4547b102eec1ee110eb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sat, 14 Oct 2023 12:18:14 +0200 Subject: [PATCH] libblkid: (vxfs) use hex escape for magic MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It's easier to read and more consistent. Signed-off-by: Thomas Weißschuh --- libblkid/src/superblocks/vxfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libblkid/src/superblocks/vxfs.c b/libblkid/src/superblocks/vxfs.c index be668315eb..274af1bdab 100644 --- a/libblkid/src/superblocks/vxfs.c +++ b/libblkid/src/superblocks/vxfs.c @@ -53,8 +53,8 @@ const struct blkid_idinfo vxfs_idinfo = .probefunc = probe_vxfs, .magics = { - { .magic = "\365\374\001\245", .len = 4, .kboff = 1 }, - { .magic = "\245\001\374\365", .len = 4, .kboff = 8 }, + { .magic = "\xf5\xfc\x01\xa5", .len = 4, .kboff = 1 }, + { .magic = "\xa5\x01\xfc\xf5", .len = 4, .kboff = 8 }, { NULL } } }; -- 2.47.3