From: Lennart Poettering Date: Mon, 10 May 2010 01:34:31 +0000 (+0200) Subject: make gcc shut up X-Git-Tag: v1~416 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=bab45044482dc012331c768c08d78a2d006485ad make gcc shut up --- diff --git a/execute.c b/execute.c index a7775a4ea..ef24f71a2 100644 --- a/execute.c +++ b/execute.c @@ -392,8 +392,8 @@ static int chown_terminal(int fd, uid_t uid) { assert(fd >= 0); /* This might fail. What matters are the results. */ - fchown(fd, uid, -1); - fchmod(fd, TTY_MODE); + (void) fchown(fd, uid, -1); + (void) fchmod(fd, TTY_MODE); if (fstat(fd, &st) < 0) return -errno; diff --git a/mount-setup.c b/mount-setup.c index 1b3d32bb3..cb91e181b 100644 --- a/mount-setup.c +++ b/mount-setup.c @@ -110,7 +110,7 @@ static int mount_cgroup_controllers(void) { return -ENOENT; /* Ignore the header line */ - fgets(buf, sizeof(buf), f); + (void) fgets(buf, sizeof(buf), f); for (;;) { MountPoint p; diff --git a/swap.c b/swap.c index 5c161e10c..fffd0b923 100644 --- a/swap.c +++ b/swap.c @@ -318,7 +318,8 @@ static int swap_load_proc_swaps(Manager *m) { Meta *meta; rewind(m->proc_swaps); - fscanf(m->proc_self_mountinfo, "%*s %*s %*s %*s %*s\n"); + + (void) fscanf(m->proc_self_mountinfo, "%*s %*s %*s %*s %*s\n"); for (;;) { char *dev = NULL, *d; diff --git a/util.c b/util.c index 8042214c8..f5f1b3a45 100644 --- a/util.c +++ b/util.c @@ -1597,7 +1597,7 @@ int flush_fd(int fd) { } int acquire_terminal(const char *name, bool fail, bool force) { - int fd = -1, notify = -1, r, wd; + int fd = -1, notify = -1, r, wd = -1; assert(name);