sway/swaynag
Sergei Trofimovich 020a572ed6 swaynag/config.c: fix build against gcc-14 (-Walloc-size)
`gcc-14` added a new `-Walloc-size` warning that makes sure that size of
an individual element matches size of a pointed type:

        https://gcc.gnu.org/PR71219

`sway` triggers it on `calloc()` calls where member size is used as
`1` (instead of member count):

    swaynag/config.c:169:65: error: allocation of insufficient size '1'
     for type 'struct swaynag_button' with size '48' [-Werror=alloc-size]
      169 | struct swaynag_button *button = calloc(sizeof(struct swaynag_button), 1);
2023-11-03 13:25:27 +01:00
..
config.c swaynag/config.c: fix build against gcc-14 (-Walloc-size) 2023-11-03 13:25:27 +01:00
main.c swaynag: call swaynag_destroy on clean exit 2023-01-16 10:47:42 -05:00
meson.build Fix build on Debian Stable 2022-11-28 23:42:41 +01:00
render.c Reuse parsed PangoFontDescription 2022-07-01 13:05:58 +02:00
swaynag.1.scd swaynag: adds option to set wayland shell layer 2021-06-17 11:47:49 +02:00
swaynag.5.scd swaynag: adds option to set wayland shell layer 2021-06-17 11:47:49 +02:00
swaynag.c swaynag: Implement wp_cursor_shape_v1 2023-07-31 10:34:11 +02:00
types.c swaynag: drop swaynag_type.font 2022-12-22 17:42:33 +01:00