mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-04 00:42:05 +00:00
Mark restrict on input too
This commit is contained in:
parent
556a84a46f
commit
943cb2ca64
1 changed files with 1 additions and 1 deletions
2
util.c
2
util.c
|
@ -456,7 +456,7 @@ static const uint16_t util_crc16_table[8][256] = {{
|
|||
}};
|
||||
|
||||
/* Non - Reflected */
|
||||
uint16_t util_crc16(uint16_t current, const char *k, size_t len) {
|
||||
uint16_t util_crc16(uint16_t current, const char *GMQCC_RESTRICT k, size_t len) {
|
||||
register uint16_t h = current;
|
||||
|
||||
/* don't load twice */
|
||||
|
|
Loading…
Reference in a new issue