cmd: Remove redundant const.
This commit is contained in:
parent
3bf42961a8
commit
2dd35ac53b
|
@ -437,7 +437,7 @@ void _splitpath(const CHAR* path, CHAR* drv, CHAR* dir, CHAR* name, CHAR* ext)
|
||||||
void WCMD_HandleTildaModifiers(char **start, char *forVariable) {
|
void WCMD_HandleTildaModifiers(char **start, char *forVariable) {
|
||||||
|
|
||||||
#define NUMMODIFIERS 11
|
#define NUMMODIFIERS 11
|
||||||
const char const validmodifiers[NUMMODIFIERS] = {
|
const char validmodifiers[NUMMODIFIERS] = {
|
||||||
'~', 'f', 'd', 'p', 'n', 'x', 's', 'a', 't', 'z', '$'
|
'~', 'f', 'd', 'p', 'n', 'x', 's', 'a', 't', 'z', '$'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue