diff options
author | rsc <devnull@localhost> | 2005-07-19 18:00:07 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-07-19 18:00:07 +0000 |
commit | 1c171e3add096f5fbecceefd19f21a43c08b5509 (patch) | |
tree | e8b4ac09d6909617761c9ad476ff295d0e91d195 /src/cmd/split.c | |
parent | 86a1a5e7b30c37ad1d1a169855eb7b94b00d6aec (diff) | |
download | plan9port-1c171e3add096f5fbecceefd19f21a43c08b5509.tar.gz plan9port-1c171e3add096f5fbecceefd19f21a43c08b5509.tar.bz2 plan9port-1c171e3add096f5fbecceefd19f21a43c08b5509.zip |
I just hate to be pushed around by some @#$%^& machine.
Diffstat (limited to 'src/cmd/split.c')
-rw-r--r-- | src/cmd/split.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/split.c b/src/cmd/split.c index c4025e20..e758786c 100644 --- a/src/cmd/split.c +++ b/src/cmd/split.c @@ -166,7 +166,7 @@ fold(char *s, int n) fline = realloc(fline,n+1); linesize = n+1; } - for(t=fline; *t++ = tolower(*s++); ) + for(t=fline; *t++ = tolower((uchar)*s++); ) continue; /* we assume the 'A'-'Z' only appear as themselves * in a utf encoding. |