From bf7869bdd428fb3b04f71191daf4243e62e95860 Mon Sep 17 00:00:00 2001 From: Bob Ellison Date: Fri, 21 Dec 2018 11:46:44 -0700 Subject: vulkaninfo: minor fix after review Changed for (unsigned int i = 0,...) to for (uint32_t i i = 0,...) for consistency with the rest of the file. --- vulkaninfo/vulkaninfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkaninfo/vulkaninfo.c b/vulkaninfo/vulkaninfo.c index 280be885..df060ca6 100644 --- a/vulkaninfo/vulkaninfo.c +++ b/vulkaninfo/vulkaninfo.c @@ -2009,7 +2009,7 @@ static void AppDevDump(const struct AppGpu *gpu, FILE *out) { } bool first_in_list = true; // Used for commas in json output - for (unsigned int i = 0; i < sizeof(supported_format_ranges)/sizeof(supported_format_ranges[0]); i++) { + for (uint32_t i = 0; i < sizeof(supported_format_ranges)/sizeof(supported_format_ranges[0]); i++) { struct FormatRange format_range = supported_format_ranges[i]; if (FormatRangeSupported(&format_range, gpu)) { for (VkFormat fmt = format_range.first_format; fmt <= format_range.last_format; ++fmt) { -- cgit v1.2.3