mirror of https://github.com/xiph/flac
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:
parent
19050f74ea
commit
7ee908403e
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue