diff options
Diffstat (limited to 'vmsify.c')
-rw-r--r-- | vmsify.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -78,8 +78,8 @@ copyto (char **to, char **from, char upto, int as_dir) } else { - if (islower (**from)) - **to = toupper (**from); + if (islower ((unsigned char)**from)) + **to = toupper ((unsigned char)**from); else **to = **from; } |