projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d52d51a
)
g3dvl: Missing semicolon.
author
Younes Manton
<younes.m@gmail.com>
Mon, 28 Sep 2009 03:54:36 +0000
(23:54 -0400)
committer
Younes Manton
<younes.m@gmail.com>
Mon, 28 Sep 2009 03:54:36 +0000
(23:54 -0400)
src/gallium/auxiliary/vl/vl_bitstream_parser.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/vl/vl_bitstream_parser.c
b/src/gallium/auxiliary/vl/vl_bitstream_parser.c
index 7883b95bbe9c30ced28fa331cedab723c75cad00..45826bad45a403834653e4b00a0f3b75c1161dc5 100644
(file)
--- 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