diff options
author | Lee Salzman <[email protected]> | 2022-08-12 08:46:05 -0400 |
---|---|---|
committer | Lee Salzman <[email protected]> | 2022-08-12 08:46:05 -0400 |
commit | 4f8e9bdc4ce6d1f61a6274b0e557065a38190952 (patch) | |
tree | 6f791a5acf63c16b233500a1b45acc69d2e6af69 /protocol.c | |
parent | 3340d1cf85f2c917eba29d179854c24a31dd37e2 (diff) | |
download | enet-4f8e9bdc4ce6d1f61a6274b0e557065a38190952.tar.gz enet-4f8e9bdc4ce6d1f61a6274b0e557065a38190952.zip |
use a hard-coded crc32 table
Diffstat (limited to 'protocol.c')
-rw-r--r-- | protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ #include "enet/time.h" #include "enet/enet.h" -static size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] = +static const size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] = { 0, sizeof (ENetProtocolAcknowledge), |