Merge branch 'backend-wayland-macro-typo'

This commit is contained in:
Daniel Eklöf 2021-07-30 10:32:33 +02:00
commit 3072c2b13f
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 7 additions and 1 deletions

View file

@ -23,10 +23,16 @@
### Deprecated ### Deprecated
### Removed ### Removed
### Fixed ### Fixed
* `yambar --backend=wayland` always erroring out with _”yambar was
compiled without the Wayland backend”_.
### Security ### Security
### Contributors ### Contributors
* [paemuri](https://codeberg.org/paemuri) * [paemuri](https://codeberg.org/paemuri)
* [ericonr](https://codeberg.org/ericonr)
## 1.6.2 ## 1.6.2

View file

@ -399,7 +399,7 @@ bar_new(const struct bar_config *config)
break; break;
case BAR_BACKEND_WAYLAND: case BAR_BACKEND_WAYLAND:
#if defined(BAR_WAYLAND) #if defined(ENABLE_WAYLAND)
backend_data = bar_backend_wayland_new(); backend_data = bar_backend_wayland_new();
backend_iface = &wayland_backend_iface; backend_iface = &wayland_backend_iface;
#else #else