diff options
| author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2017-03-10 16:06:14 +0000 |
|---|---|---|
| committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2017-03-10 16:06:14 +0000 |
| commit | 56b1edd680d2cfcbabe288fa546264497cfbb01b (patch) | |
| tree | 2cc70bc786be168952f110a1772d53f21eba2078 /usr.bin/localedef | |
| parent | 8999a290abaeccdeb56ca9032cf07fa898e3a342 (diff) | |
Notes
Diffstat (limited to 'usr.bin/localedef')
| -rw-r--r-- | usr.bin/localedef/ctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/localedef/ctype.c b/usr.bin/localedef/ctype.c index c24fdd637844..165ee9b806ed 100644 --- a/usr.bin/localedef/ctype.c +++ b/usr.bin/localedef/ctype.c @@ -384,7 +384,7 @@ dump_ctype(void) conflict++; if ((ctn->ctype & _ISSPACE) && (ctn->ctype & _ISGRAPH)) conflict++; - if ((ctn->ctype & _ISCNTRL) & _ISPRINT) + if ((ctn->ctype & _ISCNTRL) && (ctn->ctype & _ISPRINT)) conflict++; if ((wc == ' ') && (ctn->ctype & (_ISPUNCT|_ISGRAPH))) conflict++; |
