summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYounes Manton <younes.m@gmail.com>2009-09-27 23:54:36 -0400
committerYounes Manton <younes.m@gmail.com>2009-09-27 23:54:36 -0400
commitc0745670d830a644c1b398fb0c6bda165c1095fa (patch)
treee2cd3ef336d59788bee5c434f4bca28c4fd128e5 /src
parentd52d51ab8ae1240f77b6c18c3e99be4bf4868037 (diff)
g3dvl: Missing semicolon.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/vl/vl_bitstream_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_bitstream_parser.c b/src/gallium/auxiliary/vl/vl_bitstream_parser.c
index 7883b95bbe..45826bad45 100644
--- a/src/gallium/auxiliary/vl/vl_bitstream_parser.c
+++ b/src/gallium/auxiliary/vl/vl_bitstream_parser.c
@@ -27,7 +27,7 @@ show_bits(unsigned cursor, unsigned how_many_bits, const unsigned *bitstream)
unsigned lower = grab_bits(cur_bit, sizeof(unsigned) * CHAR_BIT - cur_bit,
bitstream[cur_int]);
unsigned upper = grab_bits(0, cur_bit + how_many_bits - sizeof(unsigned) * CHAR_BIT,
- bitstream[cur_int + 1])
+ bitstream[cur_int + 1]);
return lower | upper << (sizeof(unsigned) * CHAR_BIT - cur_bit);
}
else