constify first arg of FLAC__metadata_object_vorbiscomment_find_entry_from()
authorJosh Coalson <jcoalson@users.sourceforce.net>
Tue, 5 Nov 2002 07:24:33 +0000 (07:24 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Tue, 5 Nov 2002 07:24:33 +0000 (07:24 +0000)
include/FLAC/metadata.h
src/libFLAC/metadata_object.c

index ac41b89a83f4eed3794fb3923d04c2dd54ff7b74..f1392d0e1e596ec9db0fefc1125ee3cc71d4fd2e 100644 (file)
@@ -1264,7 +1264,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches(const FLAC
  *    The offset in the comment array of the first comment whose field
  *    name matches \a field_name, or \c -1 if no match was found.
  */
-FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(FLAC__StreamMetadata *object, unsigned offset, const char *field_name);
+FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name);
 
 /*@@@@ needs unit test still */
 /** Remove first Vorbis comment matching the given field name.
index f086f38c66532766bd9337529488123309abce83..6cb9db3b95a1fd8fe4569198c4e5f5f744f48025 100644 (file)
@@ -777,7 +777,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches(const FLAC
 #undef FLAC__STRNCASECMP
 }
 
-FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(FLAC__StreamMetadata *object, unsigned offset, const char *field_name)
+FLAC_API int FLAC__metadata_object_vorbiscomment_find_entry_from(const FLAC__StreamMetadata *object, unsigned offset, const char *field_name)
 {
        const unsigned field_name_length = strlen(field_name);
        unsigned i;