Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. vtm.c:1379:24: warning: '&&' within '||' [-Wlogical-op-parentheses]
  2. for (c = sel->next; c && !isvisible(c) || c->minimized; c = c->next);
  3. ~~^~~~~~~~~~~~~~~~ ~~
  4. vtm.c:1379:24: note: place parentheses around the '&&' expression to silence this warning
  5. for (c = sel->next; c && !isvisible(c) || c->minimized; c = c->next);
  6. ^
  7. ( )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement