Removed semicolon after for loop in rects_of_view

This commit is contained in:
Kris Maglione 2007-02-16 17:24:39 -05:00
parent 63a7d58bff
commit 9b063ff160

2
view.c
View File

@ -261,7 +261,7 @@ rects_of_view(View *v, uint *num, Frame *ignore) {
int i;
i = 2;
for(f=v->area->frame; f; f=f->anext);
for(f=v->area->frame; f; f=f->anext)
i++;
result = emallocz(i * sizeof(XRectangle));
i = 0;