summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2010-07-05 18:32:03 +0000
committerPaul Smith <psmith@gnu.org>2010-07-05 18:32:03 +0000
commitc78b7265bd1ee374a5e515d79448d0e3452b5ede (patch)
tree7b46185bfca8c3d2ac28780e359c15c648655bce /dir.c
parentfc644b4c450fee27683cfb73e85488a643de6fa7 (diff)
downloadgunmake-c78b7265bd1ee374a5e515d79448d0e3452b5ede.tar.gz
Fixups for warnings on Windows (esp 64bit).
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/dir.c b/dir.c
index 4224abb..7277fe6 100644
--- a/dir.c
+++ b/dir.c
@@ -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);