summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2013-10-28 13:43:12 +0000
committerpatrick <patrick@openbsd.org>2013-10-28 13:43:12 +0000
commit28f7a95083d35450e6029291f03bdb12d5b41dee (patch)
treea50d483e915ffa246e3f0ea21d23cc046686b47b
parentadd -A (-ax) support; from Lauri Tirkkonen with some option sorting. (diff)
downloadwireguard-openbsd-28f7a95083d35450e6029291f03bdb12d5b41dee.tar.xz
wireguard-openbsd-28f7a95083d35450e6029291f03bdb12d5b41dee.zip
Remove unused variable.
spotted by rapha@
-rw-r--r--sys/arch/armv7/omap/beagle_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/armv7/omap/beagle_machdep.c b/sys/arch/armv7/omap/beagle_machdep.c
index 5bdf858d6e9..78779d6b10c 100644
--- a/sys/arch/armv7/omap/beagle_machdep.c
+++ b/sys/arch/armv7/omap/beagle_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: beagle_machdep.c,v 1.3 2013/10/28 09:15:09 patrick Exp $ */
+/* $OpenBSD: beagle_machdep.c,v 1.4 2013/10/28 13:43:12 patrick Exp $ */
/* $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */
/*
@@ -714,7 +714,7 @@ initarm(void *arg0, void *arg1, void *arg2)
/* Now we fill in the L2 pagetable for the kernel static code/data */
{
- extern char etext[], _end[];
+ extern char etext[];
size_t textsize = (u_int32_t) etext - KERNEL_TEXT_BASE;
size_t totalsize = (u_int32_t) esym - KERNEL_TEXT_BASE;
u_int logical;