mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-21 18:26:06 -05:00
[chromecast] First building blocks for supporting ChromeCast
This commit is contained in:
@@ -560,9 +560,9 @@ trimwhitespace(const char *str)
|
||||
}
|
||||
|
||||
uint32_t
|
||||
djb_hash(void *data, size_t len)
|
||||
djb_hash(const void *data, size_t len)
|
||||
{
|
||||
unsigned char *bytes = data;
|
||||
const unsigned char *bytes = data;
|
||||
uint32_t hash = 5381;
|
||||
|
||||
while (len--)
|
||||
|
||||
Reference in New Issue
Block a user