about summary refs log tree commit diff stats
path: root/bonus
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-11-17 23:28:48 +0100
committerbptato <nincsnevem662@gmail.com>2023-11-17 23:28:48 +0100
commit1968c3b155123dc8e13c2908bcae74bb003e7c92 (patch)
tree1412fe3fcd402fd0d67c55c85c93c0dd8d74472d /bonus
parentf5049a471dfbe47c67a18394add5b0b8ee302eb9 (diff)
downloadchawan-1968c3b155123dc8e13c2908bcae74bb003e7c92.tar.gz
gmi2html: fix main signature
Diffstat (limited to 'bonus')
-rw-r--r--bonus/gmi2html/gmi2html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bonus/gmi2html/gmi2html.c b/bonus/gmi2html/gmi2html.c
index 869b3112..2c8c2bf6 100644
--- a/bonus/gmi2html/gmi2html.c
+++ b/bonus/gmi2html/gmi2html.c
@@ -33,7 +33,7 @@ typedef enum {
 static ParseState state = STATE_NEWLINE;
 static ParseState prev_state = STATE_NORMAL;
 
-int main() {
+int main(void) {
 	int c;
 #define BUFSIZE 4096
 	char urlbuf[BUFSIZE + 1];