diff options
| author | Federico Angelilli <code@fedang.net> | 2024-03-16 15:34:14 +0100 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-03-16 15:34:14 +0100 |
| commit | 40ca9598d269c9b6f162e80b5293f83ec37bb75d (patch) | |
| tree | 8e7e9627ca94fa87382d95fb83ee0f14385ff286 /src/dwm.c | |
| parent | 15baf349fa6985262da39b70f2d496af104c478d (diff) | |
Refactor and fix a couple leaks
Diffstat (limited to 'src/dwm.c')
| -rw-r--r-- | src/dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -386,7 +386,7 @@ DwmIpc *dwm_create(State *state, const char *socket) static void change_tag_action(Button *btn) { ButtonSimple *sbtn = CAST(btn, ButtonSimple); - DwmIpc *dwm = sbtn->action_data; + DwmIpc *dwm = sbtn->data; int n = sbtn->text[0] - '0'; g_assert(n >= 1 && n <= 9); |
