diff options
Diffstat (limited to 'layers/threading.cpp')
| -rw-r--r-- | layers/threading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/threading.cpp b/layers/threading.cpp index 2228d908..252a8c82 100644 --- a/layers/threading.cpp +++ b/layers/threading.cpp @@ -183,7 +183,7 @@ static const VkLayerProperties layerProps = { }; static inline PFN_vkVoidFunction layer_intercept_proc(const char *name) { - for (int i = 0; i < sizeof(procmap) / sizeof(procmap[0]); i++) { + for (unsigned int i = 0; i < sizeof(procmap) / sizeof(procmap[0]); i++) { if (!strcmp(name, procmap[i].name)) return procmap[i].pFunc; } |
