Commit bb970d32 authored by bcoudurier's avatar bcoudurier

fix indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8499 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bb721893
...@@ -85,7 +85,7 @@ static int lzw_get_code(struct LZWState * s) ...@@ -85,7 +85,7 @@ static int lzw_get_code(struct LZWState * s)
s->bs--; s->bs--;
} }
c = s->bbuf & s->curmask; c = s->bbuf & s->curmask;
s->bbuf >>= s->cursize; s->bbuf >>= s->cursize;
} else { // TIFF } else { // TIFF
while (s->bbits < s->cursize) { while (s->bbits < s->cursize) {
if (s->pbuf >= s->ebuf) { if (s->pbuf >= s->ebuf) {
......
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