summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/id3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/id3.c b/firmware/id3.c
index 30c095cf09..54f0f970c1 100644
--- a/firmware/id3.c
+++ b/firmware/id3.c
@@ -101,8 +101,8 @@ static int unicode_munge(char** string, int *len) {
101 101
102 /* Type 0x00 is ordinary ISO 8859-1 */ 102 /* Type 0x00 is ordinary ISO 8859-1 */
103 if(str[0] == 0x00) { 103 if(str[0] == 0x00) {
104 *len--; 104 (*len)--;
105 *string++; /* Skip the encoding type byte */ 105 (*string)++; /* Skip the encoding type byte */
106 return 0; 106 return 0;
107 } 107 }
108 108
@@ -136,7 +136,7 @@ static int unicode_munge(char** string, int *len) {
136 } while(str[0] || str[1]); 136 } while(str[0] || str[1]);
137 137
138 *len = i; 138 *len = i;
139 *string++; /* Skip the encoding type byte */ 139 (*string)++; /* Skip the encoding type byte */
140 return 0; 140 return 0;
141 } 141 }
142 142