diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-10-03 01:51:07 -0400 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-10-03 01:51:07 -0400 |
commit | 1b0694b79481643cb456d03e1be50a1b4f6ca591 (patch) | |
tree | c693c5de3ee7ebd52873f6ec063118408f0bd28a /examples/gamma-control.c | |
parent | a09d6494397bdd28a3254d2e646212afb5a3049c (diff) |
treewide: Migrate from sizeof(struct) to sizeof(*pointer) where practical
Diffstat (limited to 'examples/gamma-control.c')
-rw-r--r-- | examples/gamma-control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gamma-control.c b/examples/gamma-control.c index 9fa00ce3..69d1cd75 100644 --- a/examples/gamma-control.c +++ b/examples/gamma-control.c @@ -87,7 +87,7 @@ static const struct zwlr_gamma_control_v1_listener gamma_control_listener = { static void registry_handle_global(void *data, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version) { if (strcmp(interface, wl_output_interface.name) == 0) { - struct output *output = calloc(1, sizeof(struct output)); + struct output *output = calloc(1, sizeof(*output)); output->wl_output = wl_registry_bind(registry, name, &wl_output_interface, 1); wl_list_insert(&outputs, &output->link); |