comparison Plugins/Input/mpg123/id3_frame_content.c @ 701:d539e5c5f730 trunk

[svn] Fixes of the remaining GCC 4.1 warnings from external contributor Diego "Flameeyes" Petteno (Gentoo).
author chainsaw
date Sun, 26 Feb 2006 13:08:35 -0800
parents 18cb7405b5e9
children
comparison
equal deleted inserted replaced
700:99382cddf771 701:d539e5c5f730
72 * Expand ID3v1 genre numbers. 72 * Expand ID3v1 genre numbers.
73 */ 73 */
74 ptr = buffer; 74 ptr = buffer;
75 while (text[0] == '(' && text[1] != '(' && spc > 0) { 75 while (text[0] == '(' && text[1] != '(' && spc > 0) {
76 const char *genre; 76 const char *genre;
77 int num = 0; 77 size_t num = 0;
78 78
79 if (text[1] == 'R' && text[2] == 'X') { 79 if (text[1] == 'R' && text[2] == 'X') {
80 text += 4; 80 text += 4;
81 genre = _(" (Remix)"); 81 genre = _(" (Remix)");
82 if (ptr == buffer) 82 if (ptr == buffer)