aboutsummaryrefslogtreecommitdiff
path: root/sys/boot
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2012-03-26 18:22:04 +0000
committerMarius Strobl <marius@FreeBSD.org>2012-03-26 18:22:04 +0000
commitf7b9ae0882e62e35f88d9d188fa3279949fd8167 (patch)
treef12f530766628f58e3d9fbf3aa2bd1d0396b7f4a /sys/boot
parent91792417bbfc89ce9c08ed1aeaceaf87b904b9d3 (diff)
downloadsrc-f7b9ae0882e62e35f88d9d188fa3279949fd8167.tar.gz
src-f7b9ae0882e62e35f88d9d188fa3279949fd8167.zip
Remove second consts in r233288 in order to appease C++ compilers.
While at it, remove some style(9) bugs in libkern.h. Submitted by: kan
Notes
Notes: svn path=/head/; revision=233517
Diffstat (limited to 'sys/boot')
-rw-r--r--sys/boot/common/crc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/crc32.c b/sys/boot/common/crc32.c
index 7621bea5c600..1a3e3a3329fe 100644
--- a/sys/boot/common/crc32.c
+++ b/sys/boot/common/crc32.c
@@ -49,7 +49,7 @@ __FBSDID("$FreeBSD$");
#include "crc32.h"
-static const uint32_t const crc32_tab[] = {
+static const uint32_t crc32_tab[] = {
0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f,
0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988,
0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2,