lint: fix compiler warning about signedness mismatch

No functional change.
This commit is contained in:
rillig 2021-05-03 03:46:55 +00:00
parent 9491476953
commit fd32325145
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: lex.c,v 1.31 2021/05/01 00:08:44 christos Exp $ */ /* $NetBSD: lex.c,v 1.32 2021/05/03 03:46:55 rillig Exp $ */
/* /*
* Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved. * Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#if defined(__RCSID) && !defined(lint) #if defined(__RCSID) && !defined(lint)
__RCSID("$NetBSD: lex.c,v 1.31 2021/05/01 00:08:44 christos Exp $"); __RCSID("$NetBSD: lex.c,v 1.32 2021/05/03 03:46:55 rillig Exp $");
#endif #endif
#include <ctype.h> #include <ctype.h>
@ -261,7 +261,7 @@ symt_t symtyp;
static void static void
add_keyword(struct kwtab *kw, int deco) add_keyword(struct kwtab *kw, u_int deco)
{ {
sym_t *sym; sym_t *sym;
size_t h; size_t h;