property_notify: use NUM_HANDLERS

This commit is contained in:
Orestis Floros 2018-08-21 21:04:46 +03:00
parent e8dee4308a
commit b1aa2fb1c4
No known key found for this signature in database
GPG Key ID: E9AD9F32E401E38F
1 changed files with 1 additions and 1 deletions

View File

@ -1441,7 +1441,7 @@ static void property_notify(uint8_t state, xcb_window_t window, xcb_atom_t atom)
struct property_handler_t *handler = NULL;
xcb_get_property_reply_t *propr = NULL;
for (size_t c = 0; c < sizeof(property_handlers) / sizeof(struct property_handler_t); c++) {
for (size_t c = 0; c < NUM_HANDLERS; c++) {
if (property_handlers[c].atom != atom)
continue;