mirror of
https://github.com/reactos/wine.git
synced 2025-01-10 05:41:29 +00:00
winhttp/tests: Constify a character string.
This commit is contained in:
parent
b1fd27eb2d
commit
e7f8e9e81d
@ -292,7 +292,7 @@ static void test_SendRequest (void)
|
||||
static const WCHAR test_file[] = {'/','p','o','s','t','t','e','s','t','.','p','h','p',0};
|
||||
static const WCHAR test_verb[] = {'P','O','S','T',0};
|
||||
static CHAR post_data[] = "mode=Test";
|
||||
static CHAR test_post[] = "mode => Test\\0\n";
|
||||
static const char test_post[] = "mode => Test\\0\n";
|
||||
|
||||
header_len = -1L;
|
||||
total_len = optional_len = sizeof(post_data);
|
||||
|
Loading…
Reference in New Issue
Block a user