Mercurial > audlegacy
changeset 1000:c0bc62c5dec1 trunk
[svn] A GCC warning pointed out that the *bp++ statement did not actually do anything useful, quite certain that the author intended \(*bp\)++ or *bp += 1 here.
author | chainsaw |
---|---|
date | Mon, 01 May 2006 15:08:28 -0700 |
parents | 386cda529c28 |
children | 9189b80b6bea |
files | Plugins/General/scrobbler/tags/id3v2.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/Plugins/General/scrobbler/tags/id3v2.c Mon May 01 14:20:50 2006 -0700 +++ b/Plugins/General/scrobbler/tags/id3v2.c Mon May 01 15:08:28 2006 -0700 @@ -339,12 +339,12 @@ } if((frameflags[1] & 0x04) == 0x04) { - *bp++; + (*bp)++; framesize--; } if((frameflags[1] & 0x40) == 0x40) { - *bp++; + (*bp)++; framesize--; } } @@ -367,12 +367,12 @@ } if((frameflags[1] & 0x40) == 0x40) { - *bp++; + (*bp)++; framesize--; } if((frameflags[1] & 0x20) == 0x20) { - *bp++; + (*bp)++; framesize--; } }