diff options
Diffstat (limited to 'mandoc.c')
-rw-r--r-- | mandoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -704,7 +704,7 @@ mandoc_strntou(const char *p, size_t sz, int base) return(-1); memcpy(buf, p, sz); - buf[sz] = '\0'; + buf[(int)sz] = '\0'; errno = 0; v = strtol(buf, &ep, base); |