mirror of
https://github.com/fluencelabs/redis
synced 2025-06-20 20:46:31 +00:00
Use const in Redis Module API where possible.
This commit is contained in:
@ -272,7 +272,7 @@ uint8_t intsetGet(intset *is, uint32_t pos, int64_t *value) {
|
||||
}
|
||||
|
||||
/* Return intset length */
|
||||
uint32_t intsetLen(intset *is) {
|
||||
uint32_t intsetLen(const intset *is) {
|
||||
return intrev32ifbe(is->length);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user