From 3dd755e6a5e28e811d4bcb64e708521735a71b47 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Tue, 23 Feb 2021 19:52:06 +0000
Subject: [PATCH] pv_runtime_set_search_paths: Fix indentation

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 pressure-vessel/runtime.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/pressure-vessel/runtime.c b/pressure-vessel/runtime.c
index e4e036c82..bf31554ed 100644
--- a/pressure-vessel/runtime.c
+++ b/pressure-vessel/runtime.c
@@ -4592,15 +4592,15 @@ pv_runtime_set_search_paths (PvRuntime *self,
    * got from the environment */
   g_assert (multiarch_tuples[G_N_ELEMENTS (multiarch_tuples) - 1] == NULL);
 
-    for (i = 0; i < G_N_ELEMENTS (multiarch_tuples) - 1; i++)
-      {
-        g_autofree gchar *ld_path = NULL;
+  for (i = 0; i < G_N_ELEMENTS (multiarch_tuples) - 1; i++)
+    {
+      g_autofree gchar *ld_path = NULL;
 
-        ld_path = g_build_filename (self->overrides_in_container, "lib",
-                                    multiarch_tuples[i], NULL);
+      ld_path = g_build_filename (self->overrides_in_container, "lib",
+                                  multiarch_tuples[i], NULL);
 
-        pv_search_path_append (ld_library_path, ld_path);
-      }
+      pv_search_path_append (ld_library_path, ld_path);
+    }
 
   /* The PATH from outside the container doesn't really make sense inside the
    * container: in principle the layout could be totally different. */
-- 
GitLab