[ROSAPPS] put -Wno-unused-but-set-variable between a if(NOT MSVC) to really make...
[reactos.git] / rosapps / applications / net / ncftp / ncftp / cmds.c
index b8b8d30..e3ec848 100644 (file)
@@ -1211,7 +1211,7 @@ RunBookmarkEditor(char *selectedBmName, size_t dsize)
                SysPerror("CreateMailslot");
                (void) fprintf(stderr, "Could not create communication channel with %s.\n", "ncftpbookmarks.exe");
                (void) fprintf(stderr, "%s", "This means if you select a bookmark to connect to that NcFTP\n");
-               (void) fprintf(stderr, "%s", "will not get the message from %s.\n", "ncftpbookmarks.exe");
+               (void) fprintf(stderr, "%s", "will not get the message from %s.\n");
        }
 
        winExecResult = WinExec(prog, SW_SHOWNORMAL);
@@ -1375,7 +1375,7 @@ ListCmd(const int argc, const char **const argv, const CommandPtr cmdp, const Ar
        char options[32];
        char option[2];
        volatile int listmode;
-       FILE *volatile stream;
+       FILE *stream;
        volatile int paging;
 #if defined(WIN32) || defined(_WINDOWS)
 #else
@@ -1557,7 +1557,7 @@ LocalListCmd(const int argc, const char **const argv, const CommandPtr cmdp, con
        char options[32];
        char option[2];
        volatile int listmode;
-       FILE *volatile stream;
+       FILE *stream;
        volatile int paging;
 
 
@@ -1703,7 +1703,7 @@ LocalListCmd(const int argc, const char **const argv, const CommandPtr cmdp, con
 
 
 
-static void
+/* static void
 Sys(const int argc, const char **const argv, const ArgvInfoPtr aip, const char *syscmd, int noDQuote)
 {
        char cmd[256];
@@ -1730,7 +1730,7 @@ Sys(const int argc, const char **const argv, const ArgvInfoPtr aip, const char *
        Trace(0, "Sys: %s\n", cmd);
        (void) system(cmd);
 #endif
-}      /* Sys */
+}*/