From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ku7VN-0005h3-3U for qemu-devel@nongnu.org; Sun, 26 Oct 2008 11:26:13 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ku7VM-0005gZ-Fa for qemu-devel@nongnu.org; Sun, 26 Oct 2008 11:26:12 -0400 Received: from [199.232.76.173] (port=59935 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ku7VM-0005gU-7k for qemu-devel@nongnu.org; Sun, 26 Oct 2008 11:26:12 -0400 Received: from savannah.gnu.org ([199.232.41.3]:48804 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Ku7VL-00084w-VF for qemu-devel@nongnu.org; Sun, 26 Oct 2008 11:26:12 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Ku7VK-0000yd-Hj for qemu-devel@nongnu.org; Sun, 26 Oct 2008 15:26:10 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Ku7VK-0000yZ-8k for qemu-devel@nongnu.org; Sun, 26 Oct 2008 15:26:10 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sun, 26 Oct 2008 15:26:10 +0000 Subject: [Qemu-devel] [5540] Fix inline use warnings from sparse Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5540 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5540 Author: blueswir1 Date: 2008-10-26 15:26:09 +0000 (Sun, 26 Oct 2008) Log Message: ----------- Fix inline use warnings from sparse Modified Paths: -------------- trunk/slirp/misc.h trunk/slirp/slirp.h Modified: trunk/slirp/misc.h =================================================================== --- trunk/slirp/misc.h 2008-10-26 13:43:07 UTC (rev 5539) +++ trunk/slirp/misc.h 2008-10-26 15:26:09 UTC (rev 5540) @@ -72,8 +72,8 @@ int show_x _P((char *, struct socket *)); void redir_x _P((u_int32_t, int, int, int)); void getouraddr _P((void)); -inline void slirp_insque _P((void *, void *)); -inline void slirp_remque _P((void *)); +void slirp_insque _P((void *, void *)); +void slirp_remque _P((void *)); int add_exec _P((struct ex_list **, int, char *, int, int)); int slirp_openpty _P((int *, int *)); int fork_exec(struct socket *so, const char *ex, int do_pty); Modified: trunk/slirp/slirp.h =================================================================== --- trunk/slirp/slirp.h 2008-10-26 13:43:07 UTC (rev 5539) +++ trunk/slirp/slirp.h 2008-10-26 15:26:09 UTC (rev 5540) @@ -270,8 +270,8 @@ # define insque_32 insque # define remque_32 remque #else - inline void insque_32 _P((void *, void *)); - inline void remque_32 _P((void *)); + void insque_32 _P((void *, void *)); + void remque_32 _P((void *)); #endif #ifndef _WIN32