diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2015-02-21 07:05:21 +1100 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2015-02-21 07:05:21 +1100 |
commit | c431a6c581bc40b5d92918ff03de654555378dbe (patch) | |
tree | 8948dce79a3b11f2de65618501a2340572f16644 /src/libFLAC/metadata_object.c | |
parent | b5a10e75ed9a65a12aa69483717b4a8d6a973d06 (diff) | |
download | flac-c431a6c581bc40b5d92918ff03de654555378dbe.tar.gz |
libFLAC/metadata_object.c : Fix typo in comment.
Diffstat (limited to 'src/libFLAC/metadata_object.c')
-rw-r--r-- | src/libFLAC/metadata_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libFLAC/metadata_object.c b/src/libFLAC/metadata_object.c index f9515f36..df1cb5ec 100644 --- a/src/libFLAC/metadata_object.c +++ b/src/libFLAC/metadata_object.c @@ -1128,7 +1128,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_point if(total_samples % samples == 0) num--; - /* Put a strict upper bound on he number of allows seekpoints. */ + /* Put a strict upper bound on the number of allowed seek points. */ if (num > 32768) { /* Set the bound and recalculate samples accordingly. */ num = 32786; |