Remove hacky "+ 8" to the allocation size.

There is actually a real bug there that will be fixed by the next patch.
This commit is contained in:
Tom Hacohen 2014-06-01 15:16:05 +01:00
parent 60aee8d0b9
commit 31d652f87f
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ e_desk_show(E_Desk *desk)
desk->zone->desk_y_current = desk->y;
desk->visible = 1;
msg = alloca(sizeof(Edje_Message_Int_Set) + (3 * sizeof(int)) + 8);
msg = alloca(sizeof(Edje_Message_Int_Set) + (3 * sizeof(int)));
msg->count = 4;
msg->val[0] = desk->x;
msg->val[1] = desk->zone->desk_x_count;