cmd: Remove redundant const.

This commit is contained in:
Jan Zerebecki 2007-02-23 09:25:00 +01:00 committed by Alexandre Julliard
parent 3bf42961a8
commit 2dd35ac53b
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@ void _splitpath(const CHAR* path, CHAR* drv, CHAR* dir, CHAR* name, CHAR* ext)
void WCMD_HandleTildaModifiers(char **start, char *forVariable) {
#define NUMMODIFIERS 11
const char const validmodifiers[NUMMODIFIERS] = {
const char validmodifiers[NUMMODIFIERS] = {
'~', 'f', 'd', 'p', 'n', 'x', 's', 'a', 't', 'z', '$'
};