aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-09-08 10:37:52 +0200
committerSimon Ser <contact@emersion.fr>2022-09-13 18:01:57 +0000
commit7d78ea5628d5da8f05bb279a06f8169151da4f9b (patch)
tree915dd2b78e002d17423f4a5db2a70828410ed1c0 /src
parentutil: name function typedef arguments (diff)
downloadwayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.tar
wayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.tar.gz
wayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.tar.bz2
wayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.tar.lz
wayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.tar.xz
wayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.tar.zst
wayland-7d78ea5628d5da8f05bb279a06f8169151da4f9b.zip
server: don't document void return values
Fixes the following warnings: src/wayland-server.c:1152: warning: documented empty return type of wl_display::wl_display_destroy src/wayland-server.c:1193: warning: documented empty return type of wl_display::wl_display_set_global_filter Signed-off-by: Simon Ser <contact@emersion.fr>
Diffstat (limited to 'src')
-rw-r--r--src/wayland-server.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wayland-server.c b/src/wayland-server.c
index a44982f..617d637 100644
--- a/src/wayland-server.c
+++ b/src/wayland-server.c
@@ -1150,7 +1150,6 @@ wl_socket_alloc(void)
/** Destroy Wayland display object.
*
* \param display The Wayland display object which should be destroyed.
- * \return None.
*
* This function emits the wl_display destroy signal, releases
* all the sockets added to this display, free's all the globals associated
@@ -1193,7 +1192,6 @@ wl_display_destroy(struct wl_display *display)
* \param display The Wayland display object.
* \param filter The global filter function.
* \param data User data to be associated with the global filter.
- * \return None.
*
* Set a filter for the wl_display to advertise or hide global objects
* to clients.