Skip to content

Commit

Permalink
ActiveAEStream: Fix Compiler warning (thx @vdrfan)
Browse files Browse the repository at this point in the history
  • Loading branch information
fritsch authored and FernetMenta committed Sep 15, 2013
1 parent b0830c7 commit 82df256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ unsigned int CActiveAEStream::AddData(void *data, unsigned int size)
{
Message *msg;
unsigned int copied = 0;
int bytesToCopy = size;
unsigned int bytesToCopy = size;
uint8_t *buf = (uint8_t*)data;

while(copied < size)
Expand Down

0 comments on commit 82df256

Please sign in to comment.