diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-10-01 14:36:37 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-10-01 14:36:37 +0000 |
| commit | 6b342e4e8d97beec3f6f1226886ea99470b37f18 (patch) | |
| tree | c7a54872a955874a92c303cc2f35b0ce608f0629 | |
| parent | c09c4afb2330df87bc65edbe00138ca8515673b3 (diff) | |
| download | rockbox-6b342e4e8d97beec3f6f1226886ea99470b37f18.zip rockbox-6b342e4e8d97beec3f6f1226886ea99470b37f18.tar.gz rockbox-6b342e4e8d97beec3f6f1226886ea99470b37f18.tar.bz2 rockbox-6b342e4e8d97beec3f6f1226886ea99470b37f18.tar.xz | |
modify the data these point to, these operators are right-to-left...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2470 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/id3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/id3.c b/firmware/id3.c index 30c095c..54f0f97 100644 --- a/firmware/id3.c +++ b/firmware/id3.c @@ -101,8 +101,8 @@ static int unicode_munge(char** string, int *len) { /* Type 0x00 is ordinary ISO 8859-1 */ if(str[0] == 0x00) { - *len--; - *string++; /* Skip the encoding type byte */ + (*len)--; + (*string)++; /* Skip the encoding type byte */ return 0; } @@ -136,7 +136,7 @@ static int unicode_munge(char** string, int *len) { } while(str[0] || str[1]); *len = i; - *string++; /* Skip the encoding type byte */ + (*string)++; /* Skip the encoding type byte */ return 0; } |