widl: Constify a character string.

This commit is contained in:
Frédéric Delanoy 2013-12-19 22:25:14 +01:00 committed by Alexandre Julliard
parent a2473d2985
commit 120dac41a1
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ void write_dlldata(const statement_list_t *stmts)
dlldata = fopen(dlldata_name, "r");
if (dlldata) {
static char marker[] = "REFERENCE_PROXY_FILE";
static const char marker[] = "REFERENCE_PROXY_FILE";
static const char delegation_define[] = "#define PROXY_DELEGATION";
char *line = NULL;
size_t len = 0;