diff options
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); |