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>
This commit is contained in:
parent
4321cd9d7e
commit
6054f2cc6e
|
@ -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 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);
|
trace("mem_write(%#lx,%p,%u)\n", hf, pv, cb);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue