On 24.11.2012 8:15, Andrew Turner wrote: > The is_delim function works on wchar_t characters not ints, update the > function to take a wchar_t as it's argument. > static int > -is_delim(int ch) > +is_delim(wchar_t ch) > { > if (wflag) { > if (ch == ' ' || ch == '\t') >
I can't look at the whole code at this moment, but taking standalone this is incorrect comparison for wchar_t. Should be L' ' and L'\t' instead. _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"