From a0a49686e071ef537bcdb6943e21321e9abc05d6 Mon Sep 17 00:00:00 2001 From: mmcc Date: Sat, 24 Oct 2015 17:37:56 +0000 Subject: [PATCH] Cast isdigit()'s argument to unsigned char. ok guenther@ --- games/hack/hack.invent.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games/hack/hack.invent.c b/games/hack/hack.invent.c index f5b355049ab..5c6c8aa342b 100644 --- a/games/hack/hack.invent.c +++ b/games/hack/hack.invent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hack.invent.c,v 1.11 2015/09/27 05:13:11 guenther Exp $ */ +/* $OpenBSD: hack.invent.c,v 1.12 2015/10/24 17:37:56 mmcc Exp $ */ /* * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica, @@ -437,7 +437,7 @@ getobj(char *let, char *word) cnt = 0; ilet = readchar(); - while(isdigit(ilet) && allowcnt) { + while(isdigit((unsigned char)ilet) && allowcnt) { if (cnt < 100000000) cnt = 10*cnt + (ilet - '0'); else @@ -445,7 +445,7 @@ getobj(char *let, char *word) allowcnt = 2; /* signal presence of cnt */ ilet = readchar(); } - if(isdigit(ilet)) { + if(isdigit((unsigned char)ilet)) { pline("No count allowed with this command."); continue; } -- 2.20.1