Commit 39ca4394 authored by Stephen Hemminger's avatar Stephen Hemminger

[PATCH] sk98: local variable can be constant

The table OnesHash is only used in this file, and should
be made a local constant.
Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 3bf0adbe
......@@ -79,7 +79,7 @@ extern "C" {
/* 64-bit hash values with all bits set. */
SK_U16 OnesHash[4] = {0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF};
static const SK_U16 OnesHash[4] = {0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF};
/* local variables ************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment