swaybar: fix typo in the loop over pixmaps

Fixes #4665.
This commit is contained in:
Konstantin Pospelov 2019-10-23 00:28:59 +03:00 committed by Simon Ser
parent fa0abaf7cf
commit 06fcebc542
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ static void reload_sni(struct swaybar_sni *sni, char *icon_theme,
int min_error = INT_MAX;
for (int i = 0; i < pixmaps->length; ++i) {
struct swaybar_pixmap *p = pixmaps->items[i];
int e = abs(target_size - pixmap->size);
int e = abs(target_size - p->size);
if (e < min_error) {
pixmap = p;
min_error = e;