*: placate some compile warnings on OSX

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2016-09-01 11:16:22 +02:00
parent 76d72376e0
commit ef15970d7e
3 changed files with 5 additions and 5 deletions

View File

@ -1122,7 +1122,7 @@ static void download_one_url(const char *url)
/* fall through */ /* fall through */
case 201: /* 201 Created */ case 201: /* 201 Created */
/* "The request has been fulfilled and resulted in a new resource being created" */ /* "The request has been fulfilled and resulted in a new resource being created" */
/* Standard wget is reported to treak this as success */ /* Standard wget is reported to treat this as success */
/* fall through */ /* fall through */
case 202: /* 202 Accepted */ case 202: /* 202 Accepted */
/* "The request has been accepted for processing, but the processing has not been completed" */ /* "The request has been accepted for processing, but the processing has not been completed" */

View File

@ -181,9 +181,9 @@ static NOINLINE int do_rescan(void)
continue; continue;
/* Do we have this service listed already? */ /* Do we have this service listed already? */
for (i = 0; i < svnum; i++) { for (i = 0; i < svnum; i++) {
if ((sv[i].ino == s.st_ino) if (sv[i].ino == s.st_ino
#if CHECK_DEVNO_TOO #if CHECK_DEVNO_TOO
&& (sv[i].dev == s.st_dev) && sv[i].dev == s.st_dev
#endif #endif
) { ) {
if (sv[i].pid == 0) /* restart if it has died */ if (sv[i].pid == 0) /* restart if it has died */

View File

@ -13004,10 +13004,10 @@ init(void)
#endif #endif
p = lookupvar("PWD"); p = lookupvar("PWD");
if (p) { if (p) {
if (*p != '/' || stat(p, &st1) || stat(".", &st2) if (p[0] != '/' || stat(p, &st1) || stat(".", &st2)
|| st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino || st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino
) { ) {
p = '\0'; p = NULL;
} }
} }
setpwd(p, 0); setpwd(p, 0);