diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-05-10 03:34:31 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-10 03:34:31 +0200 |
commit | bab45044482dc012331c768c08d78a2d006485ad (patch) | |
tree | 23c288fd5acf57ae58e7e4b9895ad2fb7f95d3cd | |
parent | 462b33e96ad1732658b39895eea0b146e98bc3a5 (diff) |
make gcc shut up
-rw-r--r-- | execute.c | 4 | ||||
-rw-r--r-- | mount-setup.c | 2 | ||||
-rw-r--r-- | swap.c | 3 | ||||
-rw-r--r-- | util.c | 2 |
4 files changed, 6 insertions, 5 deletions
@@ -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 1b3d32bb37..cb91e181bf 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; @@ -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; @@ -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); |