Fix Sun C 5.9 / C99 compatiblity

git-svn-id: https://svn.musicpd.org/mpd/trunk@7041 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Avuton Olrich 2007-11-21 13:43:37 +00:00
parent 6050541d97
commit 6f11941e5e

View File

@ -39,6 +39,9 @@ typedef struct _ConvState {
mpd_sint32 lastInSampleRate;
mpd_sint32 lastOutSampleRate;
int error;
#else
/* Strict C99 doesn't allow empty structs */
void *__padding;
#endif
} ConvState;