From 7ee908403e8be011b8a7dd3bf511408b40312c2e Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Sat, 4 Feb 2012 14:08:12 +1100 Subject: [PATCH] Fix cuesheet bug introduced in ce8a75134cace056f6c436d54b57bad1a1d93797. This bug was causing the test_metaflac.sh test to fail after Earl Chew's patch 19050f74eaa1aa6d609ca065e1a854ada5bb6b4c was supposed to fix an older bug. --- src/metaflac/operations_shorthand_cuesheet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/metaflac/operations_shorthand_cuesheet.c b/src/metaflac/operations_shorthand_cuesheet.c index dadb53ba..4393a163 100644 --- a/src/metaflac/operations_shorthand_cuesheet.c +++ b/src/metaflac/operations_shorthand_cuesheet.c @@ -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); } }