From 4428c49db9399f003f0677590531d6a84c0f51ca Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 19 Aug 2020 17:47:32 +0200 Subject: [PATCH] mount-setup: drop pointless zero initialization --- src/core/mount-setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index feb88f3e6e..7df1562c8a 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -480,7 +480,7 @@ static int relabel_extra(void) { #endif int mount_setup(bool loaded_policy, bool leave_propagation) { - int r = 0; + int r; r = mount_points_setup(ELEMENTSOF(mount_table), loaded_policy); if (r < 0)