From e1eea7a4b896d6e5850c6615e1d45b52acb5e316 Mon Sep 17 00:00:00 2001 From: rpm-build Date: Feb 25 2021 06:15:51 +0000 Subject: 0001-ostree-prepare-root-print-st_dev-and-st_ino-as-64-bi.patch patch_name: 0001-ostree-prepare-root-print-st_dev-and-st_ino-as-64-bi.patch present_in_specfile: true location_in_specfile: 1 --- diff --git a/src/switchroot/ostree-prepare-root.c b/src/switchroot/ostree-prepare-root.c index 6351bab..6bc2c37 100644 --- a/src/switchroot/ostree-prepare-root.c +++ b/src/switchroot/ostree-prepare-root.c @@ -152,8 +152,8 @@ resolve_deploy_path (const char * root_mountpoint) "MESSAGE_ID=" SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(OSTREE_PREPARE_ROOT_DEPLOYMENT_MSG), "DEPLOYMENT_PATH=%s", resolved_path, - "DEPLOYMENT_DEVICE=%u", stbuf.st_dev, - "DEPLOYMENT_INODE=%u", stbuf.st_ino, + "DEPLOYMENT_DEVICE=%" PRIu64, (uint64_t) stbuf.st_dev, + "DEPLOYMENT_INODE=%" PRIu64, (uint64_t) stbuf.st_ino, NULL); #endif return deploy_path;