Reacted on compiler warnings about rev 4535

This commit is contained in:
Thomas Schmitt 2012-01-05 12:02:44 +00:00
parent c1bd3ced61
commit 792a5896e7
2 changed files with 3 additions and 3 deletions

View File

@ -1628,13 +1628,13 @@ int Cdrtrack_fill_fifo(struct CdrtracK *track, int fifo_start_at, int flag)
int Cdrtrack_set_indice(struct CdrtracK *track, int flag)
{
int idx= 1, adr, prev_adr, ret;
int idx= 1, adr, prev_adr= -1, ret;
char *cpt, *ept;
if(track->index_string == NULL)
return(2);
for(cpt= track->index_string; ept != NULL; cpt= ept + 1) {
for(ept= cpt= track->index_string; ept != NULL; cpt= ept + 1) {
ept= strchr(cpt, ',');
if(ept != NULL)
*ept= 0;

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2012.01.05.115516"
#define Cdrskin_timestamP "2012.01.05.120246"