From aa87e4e063cb3d2e10cdfd17c94e835f91847d89 Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Mon, 16 May 2011 14:39:47 -0700 Subject: [PATCH] fix alignment Change-Id: I72d2c7a0faf240d3cada1b6fb86ffb32bead3eb2 --- src/webp/encode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webp/encode.h b/src/webp/encode.h index e6cf3218..8b55605f 100644 --- a/src/webp/encode.h +++ b/src/webp/encode.h @@ -208,7 +208,7 @@ int WebPPictureCopy(const WebPPicture* const src, WebPPicture* const dst); // Returns 0 in case of memory allocation error, or if the rectangle is // outside of the source picture. int WebPPictureCrop(WebPPicture* const picture, - int left, int top, int width, int height); + int left, int top, int width, int height); // Rescale a picture to new dimension width x height. // Now gamma correction is applied.