Deskbar: Fix compilation error

This error only occurs when compiling a debug build. It was introduced
with commit fb885767b6

Change-Id: I80b470df3872b5bdd8690f65b3d14388158be8ed
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6951
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
Zardshard 2023-09-25 10:46:42 -04:00 committed by waddlesplash
parent 4b347fccb2
commit abd18fecf0
1 changed files with 1 additions and 1 deletions

View File

@ -2029,7 +2029,7 @@ TIconView::Update(int32 previous, int32 current,
// animate expanding currently centered icon
TTeamGroup* currentGroup = (TTeamGroup*)groupList->ItemAt(current);
ASSERT(group);
ASSERT(currentGroup != NULL);
AnimateIcon(currentGroup->SmallIcon(), currentGroup->LargeIcon());
}