From: Lennart Poettering Date: Mon, 14 Feb 2022 13:56:52 +0000 (+0100) Subject: homed: use SD_ID128_TO_UUID_STRING() at one more place X-Git-Tag: v251-rc1~295^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe9bd5ad3670f6a34f9ea9b4e2c16bec6000ce11;p=thirdparty%2Fsystemd.git homed: use SD_ID128_TO_UUID_STRING() at one more place --- diff --git a/src/home/homework-luks.c b/src/home/homework-luks.c index d28cc3713b6..2aa05948136 100644 --- a/src/home/homework-luks.c +++ b/src/home/homework-luks.c @@ -1859,7 +1859,7 @@ static int make_partition_table( if (!t) return log_oom(); - r = fdisk_parttype_set_typestr(t, "773f91ef-66d4-49b5-bd83-d683bf40ad16"); + r = fdisk_parttype_set_typestr(t, SD_ID128_TO_UUID_STRING(GPT_USER_HOME)); if (r < 0) return log_error_errno(r, "Failed to initialize partition type: %m");