aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2019-08-05 15:30:17 -0600
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2019-08-05 16:21:19 -0600
commit3a4935fc8debe43e9cd37a926c7f0eda1368f4c8 (patch)
tree3cd3c9f593b7f34ca587fc55b019a13da711b77b
parent07605fea7ded02fe016bbc779cc12802141576ae (diff)
downloadvulkan-tools-3a4935fc8debe43e9cd37a926c7f0eda1368f4c8.tar.gz
vulkaninfo: fix forgotten </details> tag
Fixes incorrect html output from a forgotten html closing tag. Change-Id: I3e731dafc0b191dfaa71426a7a88b6ccd28477c2
-rw-r--r--vulkaninfo/vulkaninfo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vulkaninfo/vulkaninfo.c b/vulkaninfo/vulkaninfo.c
index 1c9c25e5..ee0dea13 100644
--- a/vulkaninfo/vulkaninfo.c
+++ b/vulkaninfo/vulkaninfo.c
@@ -4657,6 +4657,8 @@ static void AppGpuDumpProps(const struct AppGpu *gpu, FILE *out) {
"\t\t\t\t\t\t<details><summary>pciFunction = <span class='val'>%" PRIuLEAST32
"</span></summary></details>\n",
pci_bus_properties->pciFunction);
+ fprintf(out, "\t\t\t\t\t</details>\n");
+
} else if (human_readable_output) {
printf("\nVkPhysicalDevicePCIBusInfoProperties\n");
printf("====================================\n");