diff options
author | Denys Vlasenko | 2016-09-01 11:16:22 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-09-01 11:16:22 +0200 |
commit | ef15970d7ec904eb33ab572abc5de1f51b7e1cfa (patch) | |
tree | aa790e1e462f4aebba74dd18c96625f4395148de /runit/runsvdir.c | |
parent | 76d72376e0244a5cafd4880cdc623e37d86a75e4 (diff) | |
download | busybox-ef15970d7ec904eb33ab572abc5de1f51b7e1cfa.zip busybox-ef15970d7ec904eb33ab572abc5de1f51b7e1cfa.tar.gz |
*: placate some compile warnings on OSX
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 2b79275..84916e9 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c @@ -181,9 +181,9 @@ static NOINLINE int do_rescan(void) continue; /* Do we have this service listed already? */ for (i = 0; i < svnum; i++) { - if ((sv[i].ino == s.st_ino) + if (sv[i].ino == s.st_ino #if CHECK_DEVNO_TOO - && (sv[i].dev == s.st_dev) + && sv[i].dev == s.st_dev #endif ) { if (sv[i].pid == 0) /* restart if it has died */ |