Commit b22c4573 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Xiph: fix sign warning

parent f8afff69
...@@ -85,7 +85,7 @@ static inline int xiph_SplitHeaders(unsigned packet_size[], void * packet[], uns ...@@ -85,7 +85,7 @@ static inline int xiph_SplitHeaders(unsigned packet_size[], void * packet[], uns
} }
else else
{ {
unsigned size = 0; int size = 0;
for (unsigned i = 0; i < count - 1; i++) { for (unsigned i = 0; i < count - 1; i++) {
packet_size[i] = 0; packet_size[i] = 0;
for (;;) { for (;;) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment