Commit c584d6b0 authored by Emanuele Giaquinta's avatar Emanuele Giaquinta Committed by Max Kellermann

Remove useless statement, curpos is initialized at the beginning of the loop.

parent c36a6b0a
...@@ -344,7 +344,6 @@ osx_play(void *data, const char *playChunk, size_t size) ...@@ -344,7 +344,6 @@ osx_play(void *data, const char *playChunk, size_t size)
} }
memcpy(od->buffer + curpos, playChunk, bytesToCopy); memcpy(od->buffer + curpos, playChunk, bytesToCopy);
curpos += bytesToCopy;
playChunk += bytesToCopy; playChunk += bytesToCopy;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment