Module Name: src
Committed By: rillig
Date: Sat Apr 10 19:27:16 UTC 2021
Modified Files:
src/external/bsd/libevent/dist/test: regress_http.c
Log Message:
tests/libevent: fix Clang build
No idea why GCC did not complain about this as well.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/libevent/dist/test/regress_http.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/libevent/dist/test/regress_http.c
diff -u src/external/bsd/libevent/dist/test/regress_http.c:1.9 src/external/bsd/libevent/dist/test/regress_http.c:1.10
--- src/external/bsd/libevent/dist/test/regress_http.c:1.9 Sat Apr 10 19:18:45 2021
+++ src/external/bsd/libevent/dist/test/regress_http.c Sat Apr 10 19:27:16 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: regress_http.c,v 1.9 2021/04/10 19:18:45 rillig Exp $ */
+/* $NetBSD: regress_http.c,v 1.10 2021/04/10 19:27:16 rillig Exp $ */
/*
* Copyright (c) 2003-2007 Niels Provos <[email protected]>
@@ -36,7 +36,7 @@
#include "event2/event-config.h"
#include <sys/cdefs.h>
-__RCSID("$NetBSD: regress_http.c,v 1.9 2021/04/10 19:18:45 rillig Exp $");
+__RCSID("$NetBSD: regress_http.c,v 1.10 2021/04/10 19:27:16 rillig Exp $");
#include <sys/types.h>
#include <sys/stat.h>
@@ -4580,7 +4580,11 @@ http_request_own_test(void *arg)
test_ok = 1;
}
-static void http_run_bev_request(struct event_base *base, int port,
+static void
+#ifdef __GNUC__
+ __attribute__((format(printf, 3, 4)))
+#endif
+http_run_bev_request(struct event_base *base, int port,
const char *fmt, ...)
{
struct bufferevent *bev = NULL;