diff options
author | Guido Günther <agx@sigxcpu.org> | 2019-02-28 16:28:18 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-02-28 16:41:23 +0100 |
commit | d3b48dfcae9a5d2fd04f14771bd59957127e79a2 (patch) | |
tree | cbfb937269f14089841175c0d576b443ca8be017 /include/wlr | |
parent | b46e097fe224de657167506cb5289074d5f2056f (diff) |
Unbreak build with '-Wstrict-prototypes'
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_cursor.h | 2 | ||||
-rw-r--r-- | include/wlr/types/wlr_output_layout.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_cursor.h b/include/wlr/types/wlr_cursor.h index 192ba8a0..4c6b1202 100644 --- a/include/wlr/types/wlr_cursor.h +++ b/include/wlr/types/wlr_cursor.h @@ -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); diff --git a/include/wlr/types/wlr_output_layout.h b/include/wlr/types/wlr_output_layout.h index cc9d2328..77e560c6 100644 --- a/include/wlr/types/wlr_output_layout.h +++ b/include/wlr/types/wlr_output_layout.h @@ -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); |