Module Name: src
Committed By: christos
Date: Wed Nov 22 17:11:51 UTC 2017
Modified Files:
src/sys/net: if_spppsubr.c
Log Message:
fix non-diagnostic compilation
To generate a diff of this commit:
cvs rdiff -u -r1.174 -r1.175 src/sys/net/if_spppsubr.c
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/if_spppsubr.c
diff -u src/sys/net/if_spppsubr.c:1.174 src/sys/net/if_spppsubr.c:1.175
--- src/sys/net/if_spppsubr.c:1.174 Wed Nov 22 03:28:56 2017
+++ src/sys/net/if_spppsubr.c Wed Nov 22 12:11:51 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: if_spppsubr.c,v 1.174 2017/11/22 08:28:56 ozaki-r Exp $ */
+/* $NetBSD: if_spppsubr.c,v 1.175 2017/11/22 17:11:51 christos Exp $ */
/*
* Synchronous PPP/Cisco link level subroutines.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.174 2017/11/22 08:28:56 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_spppsubr.c,v 1.175 2017/11/22 17:11:51 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_inet.h"
@@ -4046,7 +4046,7 @@ sppp_ipv6cp_close(struct sppp *sp)
static void
sppp_ipv6cp_TO(void *cookie)
{
- struct sppp *sp = cookie;
+ struct sppp *sp __diagused = cookie;
KASSERT(SPPP_WLOCKED(sp));
}