=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: faultrep/tests: Constify some character strings.

Alexandre Julliard julliard at winehq.org
Mon Dec 23 13:44:57 CST 2013


Module: wine
Branch: master
Commit: 9f2ebd77365674ae32899a49beb9448d94c8e177
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9f2ebd77365674ae32899a49beb9448d94c8e177

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Sat Dec 21 14:32:23 2013 +0100

faultrep/tests: Constify some character strings.

---

 dlls/faultrep/tests/faultrep.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/faultrep/tests/faultrep.c b/dlls/faultrep/tests/faultrep.c
index 948310d..934eee7 100644
--- a/dlls/faultrep/tests/faultrep.c
+++ b/dlls/faultrep/tests/faultrep.c
@@ -30,8 +30,8 @@
 #include "errorrep.h"
 #include "wine/test.h"
 
-static char regpath_root[] = "Software\\Microsoft\\PCHealth\\ErrorReporting";
-static char regpath_exclude[] = "ExclusionList";
+static const char regpath_root[] = "Software\\Microsoft\\PCHealth\\ErrorReporting";
+static const char regpath_exclude[] = "ExclusionList";
 
 /* ###### */
 




More information about the wine-cvs mailing list