From: Colin Walters Date: Tue, 27 Feb 2024 15:59:02 +0000 (-0500) Subject: otcore: Drop config load print X-Git-Tag: archive/raspbian/2024.8-1+rpi1^2~7^2~3^2~6^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bf811629c089d6e6fcf7a239e238e23437684485;p=ostree.git otcore: Drop config load print Now that we're using `otcore_load_config` from the deploy path we end up printing to stdout even for API callers (e.g. our own CLI tools, and rpm-ostree/bootc/etc) which is wrong. We don't need this print, so just drop it. --- diff --git a/src/libotcore/otcore-prepare-root.c b/src/libotcore/otcore-prepare-root.c index 03575a47..187eeec0 100644 --- a/src/libotcore/otcore-prepare-root.c +++ b/src/libotcore/otcore-prepare-root.c @@ -139,8 +139,6 @@ otcore_load_config (int rootfs_fd, const char *filename, GError **error) if (fd == -1) continue; - g_print ("Loading %s\n", path); - g_autofree char *buf = glnx_fd_readall_utf8 (fd, NULL, NULL, error); if (!buf) return NULL;