Fix cuesheet bug introduced in ce8a75134c.

This bug was causing the test_metaflac.sh test to fail after Earl Chew's
patch 19050f74ea was supposed to fix an
older bug.
This commit is contained in:
Erik de Castro Lopo 2012-02-04 14:08:12 +11:00
parent 19050f74ea
commit 7ee908403e
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ FLAC__bool import_cs_from(const char *filename, FLAC__StreamMetadata **cuesheet,
for(track = 0; track < cs->num_tracks; track++) {
const FLAC__StreamMetadata_CueSheet_Track *tr = cs->tracks+track;
for(index = 0; index < tr->num_indices; index++) {
sprintf(spec, "%" PRIu64 "u;", (tr->offset + tr->indices[index].offset));
sprintf(spec, "%" PRIu64 ";", (tr->offset + tr->indices[index].offset));
local_strcat(seekpoint_specification, spec);
}
}