summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoland Scheidegger <[email protected]>2014-12-08 19:07:10 +0100
committerRoland Scheidegger <[email protected]>2014-12-09 00:10:41 +0100
commitfea5c2640b564daf47608215b2156e5b18f7d262 (patch)
tree3d19e45c287830bb18d3490b67c0022a78ffa311 /src
parent49e04312116e4f7bbb9ebcc59247a0bcb89c3064 (diff)
draw: (trivial): remove double semicolon
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/draw/draw_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c
index 90531d38416..7bd2d393bf6 100644
--- a/src/gallium/auxiliary/draw/draw_context.c
+++ b/src/gallium/auxiliary/draw/draw_context.c
@@ -661,7 +661,7 @@ draw_total_vs_outputs(const struct draw_context *draw)
{
const struct tgsi_shader_info *info = &draw->vs.vertex_shader->info;
- return info->num_outputs + draw->extra_shader_outputs.num;;
+ return info->num_outputs + draw->extra_shader_outputs.num;
}
/**