commit 6d60ecc40b583ea75164052258497fa7c2412885
parent 589549a4df6e679731e0cfba4495f4fb7e80bc67
Author: Louis Burda <quent.burda@gmail.com>
Date: Fri, 19 May 2023 14:22:52 +0200
Fix empty argument function declarations
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tquery.c b/tquery.c
@@ -254,7 +254,7 @@ spawn(const char **prefix, const char *search_args)
}
static void
-load()
+load(void)
{
char buf[BUFSIZ];
ssize_t nread;
@@ -299,7 +299,7 @@ entry(int i)
}
static void
-update()
+update(void)
{
const ssize_t miny = 3;
int width, height;
@@ -344,7 +344,7 @@ update()
}
static void
-input()
+input(void)
{
bool dirty;
bool reload;