diff options
author | Jakob Sinclair <[email protected]> | 2016-04-14 18:07:40 +0200 |
---|---|---|
committer | Chad Versace <[email protected]> | 2016-04-26 14:36:29 -0700 |
commit | ea327dc451c1c8e46ff49a368c0d9c1485889fd3 (patch) | |
tree | a45bd443bb2b0077084e1a42af94d6e30123d4e3 /src/gallium/drivers/nouveau/nv30 | |
parent | de743a07aca97b7b96f6cd3b9f9e3d3c8bf5b845 (diff) |
gallium: Remove every double semi-colon
Signed-off-by: Jakob Sinclair <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nv30')
-rw-r--r-- | src/gallium/drivers/nouveau/nv30/nv30_vbo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv30/nv30_vbo.c b/src/gallium/drivers/nouveau/nv30/nv30_vbo.c index dec3a0bb856..bc9b9a16ea8 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_vbo.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_vbo.c @@ -445,7 +445,7 @@ nv30_draw_elements_inline_u32_short(struct nouveau_pushbuf *push, count >>= 1; while (count) { - unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN);; + unsigned npush = MIN2(count, NV04_PFIFO_MAX_PACKET_LEN); count -= npush; BEGIN_NI04(push, NV30_3D(VB_ELEMENT_U16), npush); |