diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-03-29 22:25:25 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-03-29 22:25:25 -0400 |
| commit | 393cc0969e9f20b4ec3565dc39e8ca33bbf12084 (patch) | |
| tree | b30c30c208f2f15ed7f01db0aab58b34d8b45e1c | |
| parent | c1f41495e06adebc98dcaaa4f02d2a73db99dfa1 (diff) | |
Fix layer_surface_closed
| -rw-r--r-- | swaybar/bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index afbce7cc..82404d33 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -46,7 +46,7 @@ static void layer_surface_configure(void *data, static void layer_surface_closed(void *_output, struct zwlr_layer_surface_v1 *surface) { // TODO: Deal with hotplugging - struct swaybar_output *output = output; + struct swaybar_output *output = _output; zwlr_layer_surface_v1_destroy(output->layer_surface); wl_surface_destroy(output->surface); } |
