1
0
mirror of https://github.com/systemd/systemd.git synced 2025-05-27 21:05:55 +03:00

homed: use SD_ID128_TO_UUID_STRING() at one more place

This commit is contained in:
Lennart Poettering 2022-02-14 14:56:52 +01:00
parent e46433bb92
commit fe9bd5ad36

View File

@ -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");