Skip to content

Commit

Permalink
Wayland: Squash a zero as nullptr warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-kendall committed Jan 2, 2021
1 parent b1a348f commit cc08e18
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -48,13 +48,13 @@ static const struct wl_message zwp_idle_inhibit_manager_v1_requests[] = {

const struct wl_interface zwp_idle_inhibit_manager_v1_interface = {
"zwp_idle_inhibit_manager_v1", 1, 2,
zwp_idle_inhibit_manager_v1_requests, 0, NULL,
zwp_idle_inhibit_manager_v1_requests, 0, nullptr,
};

static const struct wl_message zwp_idle_inhibitor_v1_requests[] = {
{"destroy", "", types + 0},
};

const struct wl_interface zwp_idle_inhibitor_v1_interface = {
"zwp_idle_inhibitor_v1", 1, 1, zwp_idle_inhibitor_v1_requests, 0, NULL,
"zwp_idle_inhibitor_v1", 1, 1, zwp_idle_inhibitor_v1_requests, 0, nullptr,
};

0 comments on commit cc08e18

Please sign in to comment.