bug 14016: Make vkResetFences take const pFences

https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14016
diff --git a/vulkan.py b/vulkan.py
index 7fa074a..e990567 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -369,7 +369,7 @@
         Proto("VkResult", "ResetFences",
             [Param("VkDevice", "device"),
              Param("uint32_t", "fenceCount"),
-             Param("VkFence*", "pFences")]),
+             Param("const VkFence*", "pFences")]),
 
         Proto("VkResult", "GetFenceStatus",
             [Param("VkDevice", "device"),