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/decoder_control.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/decoder_control.h') diff --git a/src/decoder_control.h b/src/decoder_control.h index af777fb31..e34e9d607 100644 --- a/src/decoder_control.h +++ b/src/decoder_control.h @@ -44,9 +44,9 @@ struct decoder_control { volatile enum decoder_state state; volatile enum decoder_command command; - volatile mpd_uint16 error; - volatile mpd_sint8 seekError; - volatile mpd_sint8 seekable; + volatile uint16_t error; + volatile int8_t seekError; + volatile int8_t seekable; volatile double seekWhere; struct audio_format audioFormat; Song *current_song; -- cgit v1.2.3