Commit e7f8e9e8 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winhttp/tests: Constify a character string.

parent b1fd27eb
...@@ -292,7 +292,7 @@ static void test_SendRequest (void) ...@@ -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_file[] = {'/','p','o','s','t','t','e','s','t','.','p','h','p',0};
static const WCHAR test_verb[] = {'P','O','S','T',0}; static const WCHAR test_verb[] = {'P','O','S','T',0};
static CHAR post_data[] = "mode=Test"; 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; header_len = -1L;
total_len = optional_len = sizeof(post_data); total_len = optional_len = sizeof(post_data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment