switch to C99 types, part II

Do full C99 integer type conversion in all modules which were not
touched by Eric's merged patch.
This commit is contained in:
Max Kellermann
2008-09-29 15:49:29 +02:00
parent 0352766dca
commit 226d52b36f
17 changed files with 82 additions and 58 deletions

View File

@@ -22,9 +22,9 @@
#include "mpd_types.h"
struct audio_format {
mpd_uint32 sampleRate;
mpd_sint8 bits;
mpd_sint8 channels;
uint32_t sampleRate;
int8_t bits;
int8_t channels;
};
static inline void audio_format_clear(struct audio_format *af)