From 50d84971036f5f18ef3ab1b17c006682815f6941 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Sat, 5 Aug 2006 11:40:03 +0000 Subject: Compilation warnings fixed git-archimport-id: mdk@sv.gnu.org/mdk--devel--1--patch-9 --- configure.in | 4 ++-- mixguile/.arch-inventory | 1 + mixlib/mix_io.c | 10 +++++----- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 347ab0b..ca9f007 100644 --- a/configure.in +++ b/configure.in @@ -8,8 +8,8 @@ # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -AC_INIT([GNU MDK],1.2.1,[bug-mdk@gnu.org],mdk) -AM_INIT_AUTOMAKE(mdk,1.2.1) +AC_INIT([GNU MDK],1.2.2,[bug-mdk@gnu.org],mdk) +AM_INIT_AUTOMAKE(mdk,1.2.2) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE diff --git a/mixguile/.arch-inventory b/mixguile/.arch-inventory index f2cfaf7..7f27782 100644 --- a/mixguile/.arch-inventory +++ b/mixguile/.arch-inventory @@ -1,2 +1,3 @@ precious ^(Makefile)$ precious ^(Makefile\.in)$ +junk ^(mixguile)$ diff --git a/mixlib/mix_io.c b/mixlib/mix_io.c index 31e43df..526b5b6 100644 --- a/mixlib/mix_io.c +++ b/mixlib/mix_io.c @@ -1,7 +1,7 @@ /* -*-c-*- --------------- mix_io.c : * Implementation of the functions declared in mix_io.h * ------------------------------------------------------------------ - * Copyright (C) 2000, 2004 Free Software Foundation, Inc. + * Copyright (C) 2000, 2004, 2006 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -82,7 +82,7 @@ mix_byte_t mix_io_read_byte (mix_iochannel_t *ioc) { mix_byte_t result = MIX_BYTE_ZERO; - if (ioc != NULL) read_data_ (ioc, &result, 1); + if (ioc != NULL) (void)read_data_ (ioc, &result, 1); return result; } @@ -109,7 +109,7 @@ mix_word_t mix_io_read_word (mix_iochannel_t *ioc) { mix_word_t result = MIX_WORD_ZERO; - if (ioc != NULL) read_data_ (ioc, &result, 1); + if (ioc != NULL) (void)read_data_ (ioc, &result, 1); return result; } @@ -136,7 +136,7 @@ mix_short_t mix_io_read_short (mix_iochannel_t *ioc) { mix_short_t result = MIX_SHORT_ZERO; - if (ioc != NULL) read_data_ (ioc, &result, 1); + if (ioc != NULL) (void)read_data_ (ioc, &result, 1); return result; } @@ -157,7 +157,7 @@ mix_char_t mix_io_read_char (mix_iochannel_t *ioc) { guchar value = MIX_CHAR_MAX; - if (ioc != NULL) read_data_ (ioc, &value, 1); + if (ioc != NULL) (void)read_data_ (ioc, &value, 1); return mix_ascii_to_char (value); } -- cgit v1.2.3