Bug 13632 Header 84 Add offset and size to VkMapMemory
diff --git a/tests/init.cpp b/tests/init.cpp
index a0c44d1..545c041 100644
--- a/tests/init.cpp
+++ b/tests/init.cpp
@@ -207,7 +207,7 @@
     err = vkAllocMemory(device(), &alloc_info, &gpu_mem);
     ASSERT_VK_SUCCESS(err);
 
-    err = vkMapMemory(gpu_mem, 0, (void **) &pData);
+    err = vkMapMemory(gpu_mem, 0, 0, 0, (void **) &pData);
     ASSERT_VK_SUCCESS(err);
 
     memset(pData, 0x55, alloc_info.allocationSize);