*** file.c.org	Mon Mar 05 14:39:02 2001
--- file.c	Tue Mar 13 16:09:45 2001
***************
*** 97,102 ****
--- 97,105 ----
    char *actual_path = curl_unescape(conn->path, 0);
    struct FILE *file;
    int fd;
+ #if defined(WIN32) || defined(__EMX__)
+   int i;
+ #endif
  
    file = (struct FILE *)malloc(sizeof(struct FILE));
    if(!file)
***************
*** 106,113 ****
    conn->proto.file = file;
  
  #if defined(WIN32) || defined(__EMX__)
-   int i;
- 
    /* change path separators from '/' to '\\' for Windows and OS/2 */
    for (i=0; actual_path[i] != '\0'; ++i)
      if (actual_path[i] == '/')
--- 109,114 ----

