Unbreak build with '-Wstrict-prototypes'

This commit is contained in:
Guido Günther 2019-02-28 16:28:18 +01:00 committed by emersion
parent b46e097fe2
commit d3b48dfcae
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ struct wlr_cursor {
void *data;
};
struct wlr_cursor *wlr_cursor_create();
struct wlr_cursor *wlr_cursor_create(void);
void wlr_cursor_destroy(struct wlr_cursor *cur);

View File

@ -47,7 +47,7 @@ struct wlr_output_layout_output {
* physical space relative to one another, and perform various useful operations
* on that state.
*/
struct wlr_output_layout *wlr_output_layout_create();
struct wlr_output_layout *wlr_output_layout_create(void);
void wlr_output_layout_destroy(struct wlr_output_layout *layout);