diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2015-03-06 09:24:59 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2015-03-06 09:24:59 +0000 |
commit | 2479665885291314c674c00adaea2c9589d68e84 (patch) | |
tree | 876a7d8bf37a5039c0dc87e886eb8859eeea8974 | |
parent | e416cc264f516dffda5d5702bbeecd388646bd27 (diff) | |
download | mandoc-2479665885291314c674c00adaea2c9589d68e84.tar.gz |
Allow compilation on Mac OS X, which doesn't have MACHINE defined.
While there, specify some casts to satisfy the compiler warnings.
OK schwarze@
-rw-r--r-- | main.c | 6 | ||||
-rw-r--r-- | preconv.c | 2 |
2 files changed, 5 insertions, 3 deletions
@@ -303,18 +303,20 @@ main(int argc, char *argv[]) argc = 1; } } else if (argc > 1 && - ((uc = argv[0]) != NULL) && + ((uc = (unsigned char *)argv[0]) != NULL) && ((isdigit(uc[0]) && (uc[1] == '\0' || (isalpha(uc[1]) && uc[2] == '\0'))) || (uc[0] == 'n' && uc[1] == '\0'))) { - search.sec = uc; + search.sec = (char *)uc; argv++; argc--; } if (search.arch == NULL) search.arch = getenv("MACHINE"); +#ifdef MACHINE if (search.arch == NULL) search.arch = MACHINE; +#endif } rc = MANDOCLEVEL_OK; @@ -33,7 +33,7 @@ preconv_encode(struct buf *ib, size_t *ii, struct buf *ob, size_t *oi, int nby; unsigned int accum; - cu = ib->buf + *ii; + cu = (unsigned char *)ib->buf + *ii; assert(*cu & 0x80); if ( ! (*filenc & MPARSE_UTF8)) |