From 4c5f0cc5c49ca369ab18c4fcfe180ac666abe872 Mon Sep 17 00:00:00 2001 From: gallatin Date: Tue, 15 Jan 2008 15:04:40 +0000 Subject: Fix accidental swap of "const" for "static" in mxge firmware byte arrays caused by running my import script with the wrong args. --- sys/dev/mxge/eth_z8e.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev/mxge/eth_z8e.h') diff --git a/sys/dev/mxge/eth_z8e.h b/sys/dev/mxge/eth_z8e.h index 3850156..94ffdad 100644 --- a/sys/dev/mxge/eth_z8e.h +++ b/sys/dev/mxge/eth_z8e.h @@ -29,10 +29,10 @@ $FreeBSD$ ***************************************************************************/ /* Using zlib-1.1.3. gendat version $Name: $ */ -const unsigned int eth_z8e_uncompressed_length = 606168; +static unsigned int eth_z8e_uncompressed_length = 606168; #define U (unsigned char) -const unsigned int eth_z8e_length = 52566; -const unsigned char eth_z8e[52566] = { +static unsigned int eth_z8e_length = 52566; +static unsigned char eth_z8e[52566] = { U 0x78,U 0xDA,U 0xEC,U 0xBD, U 0x0F,U 0x74,U 0x54,U 0xD5, U 0xB5,U 0x3F,U 0xBE,U 0x67, -- cgit v1.1