added missing semicolon
authorkramm <kramm>
Sun, 9 Sep 2007 10:25:18 +0000 (10:25 +0000)
committerkramm <kramm>
Sun, 9 Sep 2007 10:25:18 +0000 (10:25 +0000)
lib/modules/swfbits.c

index c099e58..a024835 100644 (file)
@@ -1011,7 +1011,7 @@ RGBA *swf_DefineLosslessBitsTagToImage(TAG * tag, int *dwidth, int *dheight)
                    /* remove premultiplication */
                    int alpha = data[pos+0];
                    if(alpha)
-                       alpha = 0xff0000/alpha
+                       alpha = 0xff0000/alpha;
                    dest[pos2].r = (data[pos + 1]*alpha)>>16;
                    dest[pos2].g = (data[pos + 2]*alpha)>>16;
                    dest[pos2].b = (data[pos + 3]*alpha)>>16;