From 80fcb3b8182f3e7cc73f2f9a2d30a0b92811613d Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 31 Oct 2011 20:22:34 -0400 Subject: [PATCH] checkout: Use ot_util_new_file_for_path --- src/libostree/ostree-checkout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libostree/ostree-checkout.c b/src/libostree/ostree-checkout.c index e4f09fb3..0569f287 100644 --- a/src/libostree/ostree-checkout.c +++ b/src/libostree/ostree-checkout.c @@ -204,7 +204,7 @@ run_trigger (OstreeCheckout *self, { temp_path = g_build_filename (priv->path, basename, NULL); rel_temp_path = g_strconcat ("./", basename, NULL); - temp_copy = g_file_new_for_path (temp_path); + temp_copy = ot_util_new_file_for_path (temp_path); if (!g_file_copy (trigger, temp_copy, 0, NULL, NULL, NULL, error)) goto out;