no wide character constants; sigh

This commit is contained in:
rsc 2005-05-07 22:42:06 +00:00
parent bc7da02954
commit bb0266fe61
9 changed files with 43 additions and 43 deletions

View file

@ -34,7 +34,7 @@ jolietstring(uchar *buf, int len)
int
isjolietfrog(Rune r)
{
return r==L'*' || r==L'/' || r==L':'
return r=='*' || r=='/' || r==':'
|| r==';' || r=='?' || r=='\\';
}