diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-16 20:49:06 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-16 20:49:06 +0000 |
commit | fff866326138584471c95aa4b65f20e473c455a2 (patch) | |
tree | a51827a1a1b7cd70e35319d29e5fe183c31e64af /man_hash.c | |
parent | 7247395c704e001fab02fd797a5d6dac44de2fd8 (diff) | |
download | mandoc-fff866326138584471c95aa4b65f20e473c455a2.tar.gz |
Lintifications.
Diffstat (limited to 'man_hash.c')
-rw-r--r-- | man_hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ #include "libman.h" -static unsigned char table[26 * 6]; +static u_char table[26 * 6]; void @@ -42,7 +42,7 @@ man_hash_init(void) for (j = 0; j < 6; j++) if (UCHAR_MAX == table[x + j]) { - table[x + j] = i; + table[x + j] = (u_char)i; break; } assert(j < 6); |