render/shm_allocator: make wlr_shm_allocator_create return a wlr_allocator

This commit is contained in:
Simon Zeni 2021-04-21 21:29:33 -04:00 committed by Simon Ser
parent c75aa71816
commit a8c91fbac9
4 changed files with 12 additions and 15 deletions

View file

@ -18,6 +18,6 @@ struct wlr_shm_allocator {
/**
* Creates a new shared memory allocator.
*/
struct wlr_shm_allocator *wlr_shm_allocator_create(void);
struct wlr_allocator *wlr_shm_allocator_create(void);
#endif