Constify wcmd.
This commit is contained in:
parent
e452c24654
commit
cf2b9f093d
|
@ -105,7 +105,7 @@ DWORD count;
|
|||
WIN32_FIND_DATA fd;
|
||||
HANDLE hff;
|
||||
BOOL force, status;
|
||||
static const char *overwrite = "Overwrite file (Y/N)?";
|
||||
static const char overwrite[] = "Overwrite file (Y/N)?";
|
||||
char string[8], outpath[MAX_PATH], inpath[MAX_PATH], *infile;
|
||||
|
||||
if ((strchr(param1,'*') != NULL) && (strchr(param1,'%') != NULL)) {
|
||||
|
@ -213,7 +213,7 @@ char *p;
|
|||
|
||||
void WCMD_echo (const char *command) {
|
||||
|
||||
static const char *eon = "Echo is ON\n", *eoff = "Echo is OFF\n";
|
||||
static const char eon[] = "Echo is ON\n", eoff[] = "Echo is OFF\n";
|
||||
int count;
|
||||
|
||||
if ((command[0] == '.') && (command[1] == 0)) {
|
||||
|
@ -976,7 +976,7 @@ DWORD count;
|
|||
|
||||
void WCMD_verify (char *command) {
|
||||
|
||||
static const char *von = "Verify is ON\n", *voff = "Verify is OFF\n";
|
||||
static const char von[] = "Verify is ON\n", voff[] = "Verify is OFF\n";
|
||||
int count;
|
||||
|
||||
count = strlen(command);
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "ntstatus.h"
|
||||
#include "wcmd.h"
|
||||
|
||||
const char *inbuilt[] = {"ATTRIB", "CALL", "CD", "CHDIR", "CLS", "COPY", "CTTY",
|
||||
const char * const inbuilt[] = {"ATTRIB", "CALL", "CD", "CHDIR", "CLS", "COPY", "CTTY",
|
||||
"DATE", "DEL", "DIR", "ECHO", "ERASE", "FOR", "GOTO",
|
||||
"HELP", "IF", "LABEL", "MD", "MKDIR", "MOVE", "PATH", "PAUSE",
|
||||
"PROMPT", "REM", "REN", "RENAME", "RD", "RMDIR", "SET", "SHIFT",
|
||||
|
|
Loading…
Reference in New Issue