From 67eb2617d71ce67f4b9a69929e4cf8f24c1de1ac Mon Sep 17 00:00:00 2001 From: millert <> Date: Sat, 14 Dec 2002 14:26:19 +0000 Subject: [PATCH] fix typo; noticed by David Krause --- src/include/ctype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/ctype.h b/src/include/ctype.h index 7317a17b..13d64c91 100644 --- a/src/include/ctype.h +++ b/src/include/ctype.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ctype.h,v 1.8 2002/12/14 02:34:38 millert Exp $ */ +/* $OpenBSD: ctype.h,v 1.9 2002/12/14 14:26:19 millert Exp $ */ /* $NetBSD: ctype.h,v 1.14 1994/10/26 00:55:47 cgd Exp $ */ /* @@ -134,7 +134,7 @@ static __inline int isspace(int c) static __inline int isupper(int c) { - return (c == EOF ? : (_ctype_ + 1)[(unsigned int)c] & _U); + return (c == EOF ? 0 : (_ctype_ + 1)[(unsigned int)c] & _U); } static __inline int isxdigit(int c)