Frédéric Delanoy : faultrep/tests: Constify some character strings.
Module: wine Branch: master Commit: 9f2ebd77365674ae32899a49beb9448d94c8e177 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9f2ebd77365674ae32899a49be... Author: Frédéric Delanoy <frederic.delanoy(a)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"; /* ###### */
participants (1)
-
Alexandre Julliard