# HG changeset patch # User melanson # Date 1196829165 0 # Node ID e106e4b43718024014a9f56e4c190ddb0a12119e # Parent 17086a5269381fd479b23c9839ab6634e8ab2808 adjust indentation on latest patch diff -r 17086a526938 -r e106e4b43718 mov.c --- a/mov.c Wed Dec 05 04:30:33 2007 +0000 +++ b/mov.c Wed Dec 05 04:32:45 2007 +0000 @@ -703,20 +703,20 @@ color_end = get_be16(pb); if ((color_start <= 255) && (color_end <= 255)) { - for (j = color_start; j <= color_end; j++) { - /* each R, G, or B component is 16 bits; - * only use the top 8 bits; skip alpha bytes - * up front */ - get_byte(pb); - get_byte(pb); - r = get_byte(pb); - get_byte(pb); - g = get_byte(pb); - get_byte(pb); - b = get_byte(pb); - get_byte(pb); - c->palette_control.palette[j] = - (r << 16) | (g << 8) | (b); + for (j = color_start; j <= color_end; j++) { + /* each R, G, or B component is 16 bits; + * only use the top 8 bits; skip alpha bytes + * up front */ + get_byte(pb); + get_byte(pb); + r = get_byte(pb); + get_byte(pb); + g = get_byte(pb); + get_byte(pb); + b = get_byte(pb); + get_byte(pb); + c->palette_control.palette[j] = + (r << 16) | (g << 8) | (b); } } }