libFLAC/metadata_object.c: Fix typo in number

As pointed out by Evan Ramos there was typo, `32786` instead of
`32768`.
This commit is contained in:
Erik de Castro Lopo 2016-12-06 19:44:37 +11:00
parent 7b91f2383b
commit 582f111a83

View File

@ -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;
}