From 582f111a83fea2b77be6839d3b9275012683710f Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Tue, 6 Dec 2016 19:44:37 +1100 Subject: [PATCH] libFLAC/metadata_object.c: Fix typo in number As pointed out by Evan Ramos there was typo, `32786` instead of `32768`. --- src/libFLAC/metadata_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }