X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=menu%2Fm_item_new.c;h=d7fe1f8542c2f12d33b5da1dff75d30b19cbce2c;hp=185e2dca6801ecc59583098bd5071878b05b0d3a;hb=ca5fdd32fd43d84fe3d720cd5c07fba28fc506a4;hpb=55ccd2b959766810cf7db8d1c4462f338ce0afc8;ds=sidebyside diff --git a/menu/m_item_new.c b/menu/m_item_new.c index 185e2dca..d7fe1f85 100644 --- a/menu/m_item_new.c +++ b/menu/m_item_new.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2004,2005 Free Software Foundation, Inc. * + * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -39,10 +39,12 @@ #include "menu.priv.h" #if USE_WIDEC_SUPPORT +#if HAVE_WCTYPE_H #include #endif +#endif -MODULE_ID("$Id: m_item_new.c,v 1.25 2005/04/16 22:24:38 tom Exp $") +MODULE_ID("$Id: m_item_new.c,v 1.27 2006/12/17 19:47:09 tom Exp $") /*--------------------------------------------------------------------------- | Facility : libnmenu @@ -66,13 +68,13 @@ Is_Printable_String(const char *s) assert(s); if (count > 0 - && (temp = typeCalloc(wchar_t, (2 + count))) != 0) + && (temp = typeCalloc(wchar_t, (2 + (unsigned)count))) != 0) { int n; mbstowcs(temp, s, (unsigned)count); for (n = 0; n < count; ++n) - if (!iswprint(temp[n])) + if (!iswprint((wint_t) temp[n])) { result = FALSE; break;