video/out/bitmap_packer: Avoid empty initializer list

This commit is contained in:
Michael Forney 2019-07-03 02:20:12 -07:00 committed by wm4
parent 235fabcfae
commit 78963d1e66
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ static int pack_rectangles(struct pos *in, struct pos *out, int num_rects,
bins[i] = bins[i << HEIGHT_SORT_BITS] - sizes[i << HEIGHT_SORT_BITS];
struct {
int size, x, bottom;
} stack[16] = {{15, 0, h}}, s = {};
} stack[16] = {{15, 0, h}}, s = {0};
int stackpos = 1;
int y;
while (stackpos) {