inetcomm/tests: Constify some character strings.

This commit is contained in:
Frédéric Delanoy 2013-12-24 09:25:35 +01:00 committed by Alexandre Julliard
parent 3ad692d483
commit ff304fb5c7
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
#include "wine/test.h"
static char msg1[] =
static const char msg1[] =
"MIME-Version: 1.0\r\n"
"Content-Type: multipart/mixed;\r\n"
" boundary=\"------------1.5.0.6\";\r\n"
@ -224,7 +224,7 @@ static void test_CreateMessage(void)
char text[] = "text";
HBODY *body_list;
PROPVARIANT prop;
static char att_pritype[] = "att:pri-content-type";
static const char att_pritype[] = "att:pri-content-type";
hr = MimeOleCreateMessage(NULL, &msg);
ok(hr == S_OK, "ret %08x\n", hr);