chiark / gitweb /
mount: minor modernization
[elogind.git] / src / core / mount.c
index 814674a02d09f626420e9b75034877e197b20834..b35e5078789f13e4382cd48b2a68435d1da11864 100644 (file)
@@ -1479,9 +1479,10 @@ static int mount_add_one(
                 }
         }
 
-        if (!(w = strdup(what)) ||
-            !(o = strdup(options)) ||
-            !(f = strdup(fstype))) {
+        w = strdup(what);
+        o = strdup(options);
+        f = strdup(fstype);
+        if (!w || !o || !f) {
                 r = -ENOMEM;
                 goto fail;
         }