Module: wine Branch: master Commit: f2b0ed061183ba4ed4ecee01a3f47bcb4a8273a7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2b0ed061183ba4ed4ecee01a3...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Wed Dec 18 23:14:13 2013 +0100
wer: Constify a character string.
---
dlls/wer/main.c | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/dlls/wer/main.c b/dlls/wer/main.c index 9b1d6a0..da44aa7 100644 --- a/dlls/wer/main.c +++ b/dlls/wer/main.c @@ -50,10 +50,11 @@ static CRITICAL_SECTION report_table_cs = { &report_table_cs_debug, -1, 0, 0, 0,
static struct list report_table = LIST_INIT(report_table);
-static WCHAR regpath_exclude[] = {'S','o','f','t','w','a','r','e','\', - 'M','i','c','r','o','s','o','f','t','\', - 'W','i','n','d','o','w','s',' ','E','r','r','o','r',' ','R','e','p','o','r','t','i','n','g','\', - 'E','x','c','l','u','d','e','d','A','p','p','l','i','c','a','t','i','o','n','s',0}; +static const WCHAR regpath_exclude[] = + {'S','o','f','t','w','a','r','e','\', + 'M','i','c','r','o','s','o','f','t','\', + 'W','i','n','d','o','w','s',' ','E','r','r','o','r',' ','R','e','p','o','r','t','i','n','g','\', + 'E','x','c','l','u','d','e','d','A','p','p','l','i','c','a','t','i','o','n','s',0};
/*********************************************************************** * Memory allocation helper