From e62d9b81926e22f7a1d8a117fd85bb735d3cead2 Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Sun, 15 Mar 2015 17:17:24 -0400 Subject: Add (void) where we don't care about return value --- src/machine/machine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/machine/machine.c') diff --git a/src/machine/machine.c b/src/machine/machine.c index 182430d785..048607fb7f 100644 --- a/src/machine/machine.c +++ b/src/machine/machine.c @@ -212,9 +212,9 @@ int machine_save(Machine *m) { /* Create a symlink from the unit name to the machine * name, so that we can quickly find the machine for - * each given unit */ + * each given unit. Ignore error. */ sl = strjoina("/run/systemd/machines/unit:", m->unit); - symlink(m->name, sl); + (void) symlink(m->name, sl); } finish: -- cgit v1.2.3-54-g00ecf