diff options
author | Paul Smith <psmith@gnu.org> | 2010-07-05 18:32:03 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2010-07-05 18:32:03 +0000 |
commit | c78b7265bd1ee374a5e515d79448d0e3452b5ede (patch) | |
tree | 7b46185bfca8c3d2ac28780e359c15c648655bce /dir.c | |
parent | fc644b4c450fee27683cfb73e85488a643de6fa7 (diff) | |
download | gunmake-c78b7265bd1ee374a5e515d79448d0e3452b5ede.tar.gz |
Fixups for warnings on Windows (esp 64bit).
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -123,14 +123,11 @@ downcase (const char *filename) { static PATH_VAR (new_filename); char *df; - int i; if (filename == 0) return 0; df = new_filename; - - /* First, transform the name part. */ while (*filename != '\0') { *df++ = tolower ((unsigned char)*filename); |