misc style fix

Change-Id: Ib764cb09bd78ab6e72c60f495d55b752ad4dbe4d
This commit is contained in:
Pascal Massimino 2013-03-29 03:13:43 -07:00
parent 69e2590642
commit 142c46291e
7 changed files with 11 additions and 13 deletions

View File

@ -462,7 +462,6 @@ int WebPPictureRescale(WebPPicture* pic, int width, int height) {
(uint8_t*)tmp.argb, width, height, (uint8_t*)tmp.argb, width, height,
tmp.argb_stride * 4, tmp.argb_stride * 4,
work, 4); work, 4);
} }
WebPPictureFree(pic); WebPPictureFree(pic);
free(work); free(work);

View File

@ -28,7 +28,6 @@ static int IsVP8XNeeded(const VP8Encoder* const enc) {
} }
static int PutPaddingByte(const WebPPicture* const pic) { static int PutPaddingByte(const WebPPicture* const pic) {
const uint8_t pad_byte[1] = { 0 }; const uint8_t pad_byte[1] = { 0 };
return !!pic->writer(pad_byte, 1, pic); return !!pic->writer(pad_byte, 1, pic);
} }