ntdll/tests: Constify a character string.

This commit is contained in:
Frédéric Delanoy 2013-12-26 22:49:29 +01:00 committed by Alexandre Julliard
parent 1d36b93f7e
commit 1181c850dd
1 changed files with 1 additions and 1 deletions

View File

@ -1057,7 +1057,7 @@ static DWORD dpe_exception_handler(EXCEPTION_RECORD *rec, EXCEPTION_REGISTRATION
static void test_dpe_exceptions(void)
{
static char single_ret[] = {0xC3};
static const BYTE single_ret[] = {0xC3};
struct dpe_exception_info info;
NTSTATUS stat;
BOOL has_hw_support;