fixed uninitialized variable warning
authorThomas Bluemel <thomas@reactsoft.com>
Mon, 1 Aug 2005 13:27:02 +0000 (13:27 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Mon, 1 Aug 2005 13:27:02 +0000 (13:27 +0000)
svn path=/trunk/; revision=16953

reactos/apps/utils/net/ftp/ftp.c

index 1fa0f0d..8ed5b75 100644 (file)
@@ -724,7 +724,7 @@ void abortrecv()
 void recvrequest(char *cmd, char *local, char *remote, char *mode,
                 int printnames)
 {
-       FILE *fout;
+       FILE *fout = stdout;
         int din = 0;
        int (*closefunc)(), _pclose(), fclose();
        void (*oldintr)(int), (*oldintp)(int);