Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/flac/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,7 @@ int parse_option(int short_option, const char *long_option, const char *option_a
case 'r':
{
uint32_t i;
char * p;
const char * p;
FLAC__ASSERT(0 != option_argument);
p = strchr(option_argument, ',');
if(0 == p) {
Expand Down
2 changes: 1 addition & 1 deletion src/flac/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ FLAC__bool flac__utils_get_channel_mask_tag(const FLAC__StreamMetadata *object,
{
int offset;
uint32_t val;
char *p;
const char *p;
FLAC__ASSERT(object);
FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
if(0 > (offset = FLAC__metadata_object_vorbiscomment_find_entry_from(object, /*offset=*/0, CHANNEL_MASK_TAG)))
Expand Down
2 changes: 1 addition & 1 deletion src/share/getopt/getopt.c
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ share___getopt_internal (

{
char c = *nextchar++;
char *temp = my_index (optstring, c);
const char *temp = my_index (optstring, c);

/* Increment `share__optind' when we start to process its last character. */
if (*nextchar == '\0')
Expand Down