Module Name: src
Committed By: rillig
Date: Wed May 19 06:13:08 UTC 2021
Modified Files:
src/sys/net/lagg: if_laggproto.h
Log Message:
if_lagg: fix Clang build
Clang is stricter than GCC when it comes to nonliteral format strings.
sys/net/lagg/if_lagg.c:2372:12: error:
format string is not a string literal [-Werror,-Wformat-nonliteral]
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/net/lagg/if_laggproto.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/net/lagg/if_laggproto.h
diff -u src/sys/net/lagg/if_laggproto.h:1.1 src/sys/net/lagg/if_laggproto.h:1.2
--- src/sys/net/lagg/if_laggproto.h:1.1 Mon May 17 04:07:43 2021
+++ src/sys/net/lagg/if_laggproto.h Wed May 19 06:13:08 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: if_laggproto.h,v 1.1 2021/05/17 04:07:43 yamaguchi Exp $ */
+/* $NetBSD: if_laggproto.h,v 1.2 2021/05/19 06:13:08 rillig Exp $ */
#ifndef _NET_LAGG_IF_LAGGPROTO_H_
#define _NET_LAGG_IF_LAGGPROTO_H_
@@ -226,7 +226,8 @@ lagg_portactive(struct lagg_port *lp)
return false;
}
-void lagg_log(struct lagg_softc *, int, const char *, ...);
+void lagg_log(struct lagg_softc *, int, const char *, ...)
+ __printflike(3, 4);
void lagg_port_getref(struct lagg_port *, struct psref *);
void lagg_port_putref(struct lagg_port *, struct psref *);
void lagg_enqueue(struct lagg_softc *,