diff --git a/src/libFLAC/metadata_object.c b/src/libFLAC/metadata_object.c index 93bf68b1..9cb95019 100644 --- a/src/libFLAC/metadata_object.c +++ b/src/libFLAC/metadata_object.c @@ -1123,7 +1123,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_point /* Put a strict upper bound on the number of allowed seek points. */ if (num > 32768) { /* Set the bound and recalculate samples accordingly. */ - num = 32786; + num = 32768; samples = total_samples / num; }