summaryrefslogtreecommitdiff
path: root/src/machine/machine.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-03-15 17:17:24 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-03-15 17:26:58 -0400
commite62d9b81926e22f7a1d8a117fd85bb735d3cead2 (patch)
tree3547e4ab46ef4da1fa8be202d664a514bcec3e63 /src/machine/machine.c
parentcc02a7b3304975e39ad5863983b16ef149b7f9e9 (diff)
Add (void) where we don't care about return value
Diffstat (limited to 'src/machine/machine.c')
-rw-r--r--src/machine/machine.c4
1 files changed, 2 insertions, 2 deletions
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: