aboutsummaryrefslogtreecommitdiff
path: root/toys/mdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/mdev.c')
-rw-r--r--toys/mdev.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/toys/mdev.c b/toys/mdev.c
index 63c50823..39f66356 100644
--- a/toys/mdev.c
+++ b/toys/mdev.c
@@ -168,7 +168,9 @@ found_device:
if (mknod(temp, mode | type, makedev(major, minor)) && errno != EEXIST)
perror_exit("mknod %s failed", temp);
- if (CFG_MDEV_CONF) chown(temp, uid, gid);
+ // Dear gcc: shut up about ignoring the return value here. If it doesn't
+ // work, what exactly are we supposed to do about it?
+ if (CFG_MDEV_CONF) mode=chown(temp, uid, gid);
}
static int callback(char *path, struct dirtree *node)