From: Brian Paul Date: Mon, 8 Jul 2013 16:00:54 +0000 (-0600) Subject: tgsi: s/unsigned/int/ to silence MSVC warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c45d8f2e987bf7af8ea5f2e76ff5a59b77d096f1;p=mesa.git tgsi: s/unsigned/int/ to silence MSVC warning --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index a4737822566..a07df5c4905 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -285,7 +285,7 @@ tgsi_scan_shader(const struct tgsi_token *tokens, if (procType == TGSI_PROCESSOR_GEOMETRY) { unsigned input_primitive = info->properties[i].data[0]; int num_verts = u_vertices_per_prim(input_primitive); - unsigned j; + int j; info->file_count[TGSI_FILE_INPUT] = num_verts; info->file_max[TGSI_FILE_INPUT] = MAX2(info->file_max[TGSI_FILE_INPUT], num_verts - 1);