Module: wine Branch: master Commit: 9ad67a9a8ea185942f7962008d906adc0d0871cb URL: http://source.winehq.org/git/wine.git/?a=commit;h=9ad67a9a8ea185942f7962008d...
Author: Frédéric Delanoy frederic.delanoy@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";