Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
36f7d0a6
Commit
36f7d0a6
authored
Dec 23, 2002
by
Josh Coalson
Browse files
fix warning about unused vars
parent
709b7fce
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/libOggFLAC/stream_encoder.c
View file @
36f7d0a6
...
...
@@ -659,6 +659,8 @@ FLAC__StreamEncoderWriteStatus write_callback_(const FLAC__StreamEncoder *unused
OggFLAC__StreamEncoder
*
encoder
=
(
OggFLAC__StreamEncoder
*
)
client_data
;
ogg_packet
packet
;
const
FLAC__uint64
total_samples_estimate
=
FLAC__stream_encoder_get_total_samples_estimate
(
encoder
->
private_
->
FLAC_stream_encoder
);
(
void
)
unused
;
FLAC__ASSERT
(
encoder
->
private_
->
FLAC_stream_encoder
==
unused
);
encoder
->
private_
->
samples_written
+=
samples
;
...
...
src/plugin_common/id3v2.c
View file @
36f7d0a6
...
...
@@ -368,6 +368,7 @@ FLAC__bool FLAC_plugin__id3v2_tag_get(const char *filename, FLAC_Plugin__Canonic
#ifdef FLAC__HAS_ID3LIB
return
local__get_tag
(
filename
,
tag
);
#else
(
void
)
filename
,
(
void
)
tag
;
return
false
;
#endif
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment