From 226d52b36fe648215f367d352ad6e5eb38e116be Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 29 Sep 2008 15:49:29 +0200 Subject: switch to C99 types, part II Do full C99 integer type conversion in all modules which were not touched by Eric's merged patch. --- src/audio_format.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/audio_format.h') diff --git a/src/audio_format.h b/src/audio_format.h index e45d79cd5..3bbca3734 100644 --- a/src/audio_format.h +++ b/src/audio_format.h @@ -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) -- cgit v1.2.3