cabinet/tests: Alter string declaration to include null terminator.

Signed-off-by: Isira Seneviratne <isirasen96@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Isira Seneviratne 2019-08-18 16:14:34 +05:30 committed by Alexandre Julliard
parent 4321cd9d7e
commit 6054f2cc6e
1 changed files with 1 additions and 1 deletions

View File

@ -776,7 +776,7 @@ static UINT CDECL fdi_mem_read(INT_PTR hf, void *pv, UINT cb)
static UINT CDECL fdi_mem_write(INT_PTR hf, void *pv, UINT cb)
{
static const char expected[12] = "Hello World!";
static const char expected[] = "Hello World!";
trace("mem_write(%#lx,%p,%u)\n", hf, pv, cb);