mirror of
https://github.com/badaix/snapcast.git
synced 2025-06-07 13:21:43 +02:00
Fix warnings on Windows
This commit is contained in:
parent
30753f9f61
commit
ade0ee7be3
13 changed files with 67 additions and 63 deletions
|
@ -50,7 +50,7 @@ public:
|
|||
|
||||
uint32_t getSize() const override
|
||||
{
|
||||
return sizeof(uint32_t) + codec.size() + sizeof(uint32_t) + payloadSize;
|
||||
return static_cast<uint32_t>(sizeof(uint32_t) + codec.size() + sizeof(uint32_t) + payloadSize);
|
||||
}
|
||||
|
||||
uint32_t payloadSize;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue