yay, I can commit again !!! this fixes warnings I had

Original commit message from CVS:
yay, I can commit again !!!

this fixes warnings I had
This commit is contained in:
Thomas Vander Stichele 2002-09-19 15:17:02 +00:00
parent b6b3c5f55a
commit f5501e25a2
2 changed files with 10 additions and 11 deletions

View file

@ -38,5 +38,4 @@
#endif /* FLAC_VERSION < 0x010003 */
#endif
#endif /* _FLAC_COMPAT_H_ */

View file

@ -329,15 +329,15 @@ gst_flacenc_update_quality (FlacEnc *flacenc, gint quality)
{
flacenc->quality = quality;
#define DO_UPDATE(name, val, str) \
G_STMT_START{ \
#define DO_UPDATE (name, val, str) \
G_STMT_START { \
if (FLAC__stream_encoder_get_##name (flacenc->encoder) != \
flacenc_params[quality].##val) { \
flacenc_params[quality].val) { \
FLAC__stream_encoder_set_##name (flacenc->encoder, \
flacenc_params[quality].##val); \
flacenc_params[quality].val); \
g_object_notify (G_OBJECT (flacenc), str); \
}; \
} G_STMT_END
} \
} G_STMT_END
g_object_freeze_notify (G_OBJECT (flacenc));