fix some gcc-2.95 errors

git-svn-id: https://svn.musicpd.org/mpd/trunk@414 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2004-03-23 03:02:49 +00:00
parent 7874a003e9
commit fc84fa54fc
2 changed files with 6 additions and 3 deletions

View File

@ -130,11 +130,13 @@ int isFile(char * utf8file, time_t * mtime) {
int hasSuffix(char * utf8file, char * suffix) {
char * file = utf8ToFsCharset(utf8file);
char * dup = strdup(file);;
char * dup = strdup(file);
char * cLast;
char * cNext = cLast = strtok(dup,".");
char * cNext;
int ret = 0;
cNext = cLast = strtok(dup,".");
while((cNext = strtok(NULL,"."))) cLast = cNext;
if(cLast && 0==strcasecmp(cLast,suffix)) ret = 1;
free(dup);

View File

@ -172,9 +172,10 @@ int playerGetDecodeType(char * utf8file) {
int playerPlay(FILE * fp, char * utf8file) {
PlayerControl * pc = &(getPlayerData()->playerControl);
if(fp==NULL) fp = stderr;
int decodeType;
if(fp==NULL) fp = stderr;
if(playerStop(fp)<0) return -1;
{