Skip to content

Commit 067b66d

Browse files
authored
Update flac.c - flac_find_frame returns a 64 bit int
The flac_find_frame function was changed to return off_t instead of int
1 parent 10a7a75 commit 067b66d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/flac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ _flac_parse(PerlIO *infile, char *file, HV *info, HV *tags, uint8_t seeking)
270270

271271
// offset is in ms, does sample-accurate seeking, using seektable if available
272272
// based on libFLAC seek_to_absolute_sample_
273-
static int
273+
static off_t
274274
flac_find_frame(PerlIO *infile, char *file, int offset)
275275
{
276276
off_t frame_offset = -1;

0 commit comments

Comments
 (0)