From d7b21d511ab371bda7ae5ecb3788b9ac9d5bcb5c Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Wed, 3 Nov 2010 09:56:48 -0600 Subject: avoid compiler warning * sed/sed.c (includes): Supply missing header. --- basicdefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basicdefs.h') diff --git a/basicdefs.h b/basicdefs.h index 72f7503..2e4fcb4 100644 --- a/basicdefs.h +++ b/basicdefs.h @@ -1,5 +1,5 @@ /* GNU SED, a batch stream editor. - Copyright (C) 1998, 1999, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2002, 2003, 2010 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -151,7 +151,7 @@ typedef unsigned long countT; #undef ISPRINT #define ISPRINT(c) (ISASCII (c) && isprint (c)) -#define ISDIGIT(c) (ISASCII (c) && isdigit (c)) +#define ISDIGIT(c) (ISASCII (c) && isdigit ((unsigned char) (c))) #define ISALNUM(c) (ISASCII (c) && isalnum (c)) #define ISALPHA(c) (ISASCII (c) && isalpha (c)) #define ISCNTRL(c) (ISASCII (c) && iscntrl (c)) -- cgit v1.2.1