don't print the filename and only print the CUEPOINT if there is one

This commit is contained in:
Bill Currie 2002-07-29 21:39:42 +00:00
parent fc9b734d6b
commit 5d14e327aa

View file

@ -386,7 +386,8 @@ main (int argc, char **argv)
break;
}
}
printf ("%s: CUEPOINT=%d %d\n", *argv, sample_start, sample_count);
if (sample_start!= -1)
printf ("CUEPOINT=%d %d\n", sample_start, sample_count);
}
return 0;
}