From 12482ec6cd4fa07e29df3c22628988d76fe438cf Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 1 Aug 2002 06:39:10 +0000 Subject: [PATCH] minor comments --- src/flac/encode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flac/encode.c b/src/flac/encode.c index 27e4204..3768c3d 100644 --- a/src/flac/encode.c +++ b/src/flac/encode.c @@ -1291,7 +1291,7 @@ FLAC__bool convert_to_seek_table(char *requested_seek_points, int num_requested_ num_requested_seek_points = 1; } - /* first count how many individual seek point we may need */ + /* first count how many individual seek points we may need */ real_points = placeholders = 0; for(i = 0; i < (unsigned)num_requested_seek_points; i++) { q = strchr(pt, '<'); @@ -1351,7 +1351,7 @@ FLAC__bool convert_to_seek_table(char *requested_seek_points, int num_requested_ /* sort the seekpoints */ qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare); - /* uniqify the seekpoints */ + /* uniquify the seekpoints */ first = true; for(i = j = 0; i < seek_table->num_points; i++) { if(!first) { -- 2.7.4