Fix Coverity bug 1108392: Stray semicolon

Signed-off-by: Philippe Saint-Pierre <stpere@gmail.com>
This commit is contained in:
Puck Meerburg 2013-12-23 23:14:48 +00:00 committed by Philippe Saint-Pierre
parent c4f80d1ee8
commit 62f70e6f0a

View File

@ -2004,7 +2004,7 @@ BColumnListView::DoLayout()
if (fStatusView != NULL) {
BSize size = fStatusView->MinSize();
if (size.height > B_H_SCROLL_BAR_HEIGHT);
if (size.height > B_H_SCROLL_BAR_HEIGHT)
size.height = B_H_SCROLL_BAR_HEIGHT;
if (size.width > Bounds().Width() / 2)
size.width = floorf(Bounds().Width() / 2);