[all] use explicit void parameter lists

This makes it a compile-time error to call a function that semantically
takes no parameters with a nonzero number of arguments.

Previously, such code would still compile, but risk blowing up the stack
if a compiler chose to use something other than caller-cleanup calling
conventions.
This commit is contained in:
Tudor Brindus
2021-01-14 01:05:26 -05:00
committed by Geoffrey McRae
parent dc17492750
commit a46a3a2668
28 changed files with 111 additions and 111 deletions

View File

@@ -171,7 +171,7 @@ static enum LG_ClipboardData mimetypeToCbType(const char * mimetype)
return LG_CLIPBOARD_DATA_NONE;
}
static const char * wayland_cb_getName()
static const char * wayland_cb_getName(void)
{
return "Wayland";
}
@@ -327,7 +327,7 @@ static bool wayland_cb_init(
return true;
}
static void wayland_cb_free()
static void wayland_cb_free(void)
{
free(this);
this = NULL;
@@ -425,7 +425,7 @@ static void wayland_cb_notice(LG_ClipboardRequestFn requestFn,
this->requestFn(wayland_cb_reply_fn, NULL);
}
static void wayland_cb_release()
static void wayland_cb_release(void)
{
this->requestFn = NULL;
}

View File

@@ -57,7 +57,7 @@ static const char * atomTypes[] =
"image/jpeg"
};
static const char * x11_cb_getName()
static const char * x11_cb_getName(void)
{
return "X11";
}
@@ -116,7 +116,7 @@ static bool x11_cb_init(
return true;
}
static void x11_cb_free()
static void x11_cb_free(void)
{
free(this);
this = NULL;
@@ -432,7 +432,7 @@ static void x11_cb_notice(LG_ClipboardRequestFn requestFn, LG_ClipboardData type
XFlush(this->display);
}
static void x11_cb_release()
static void x11_cb_release(void)
{
this->requestFn = NULL;
XSetSelectionOwner(this->display, XA_PRIMARY , None, CurrentTime);