Skip to content

Commit

Permalink
Remove unused assignment in cddb.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Hill committed Sep 6, 2012
1 parent f142e0a commit 180b03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/network/cddb.cpp
Expand Up @@ -491,7 +491,7 @@ void Xcddb::parseData(const char *buffer)
// the data contained on those lines should be concatenated
char *line;
const char trenner[3] = {'\n', '\r', '\0'};
line = strtok((char*)buffer, trenner); // skip first line
strtok((char*)buffer, trenner); // skip first line
while ((line = strtok(0, trenner)))
{
// Lines that begin with # are comments, should be ignored
Expand Down

0 comments on commit 180b03c

Please sign in to comment.