Change rotation to unsigned int.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-05-01 08:27:02 +01:00
parent 843e5df1e5
commit ac4f1191ea
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ typedef struct _Outbuf Outbuf;
struct _Outbuf
{
unsigned int depth;
int w, h, rotation;
int w, h;
unsigned int rotation, depth;
Eina_Bool destination_alpha : 1;
};