=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: secur32/tests: Constify a character string.

Alexandre Julliard julliard at winehq.org
Mon Dec 30 13:05:59 CST 2013


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

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Sat Dec 28 14:10:46 2013 +0100

secur32/tests: Constify a character string.

---

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

diff --git a/dlls/secur32/tests/ntlm.c b/dlls/secur32/tests/ntlm.c
index f01fa12..1e865ad 100644
--- a/dlls/secur32/tests/ntlm.c
+++ b/dlls/secur32/tests/ntlm.c
@@ -113,7 +113,7 @@ static BYTE message_binary[] =
    {0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x2c, 0x20, 0x77, 0x6f, 0x72,
     0x6c, 0x64, 0x21};
 
-static char message[] = "Hello, world!";
+static const char message[] = "Hello, world!";
 
 static char message_header[] = "Header Test";
 




More information about the wine-cvs mailing list