From: Ulrich Drepper Date: Tue, 29 Jul 2008 00:26:56 +0000 (+0000) Subject: * io/ftw.c (add_object): Remove inline to avoid warning. X-Git-Tag: cvs/fedora-glibc-20080802T0809~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=300ea0ad5e77c2ee345a5cc1257ea6fe13ad6554;p=thirdparty%2Fglibc.git * io/ftw.c (add_object): Remove inline to avoid warning. --- diff --git a/ChangeLog b/ChangeLog index e7d4aa9b383..76aafc00769 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-07-28 Ulrich Drepper + * io/ftw.c (add_object): Remove inline to avoid warning. + * sysdeps/unix/sysv/linux/paccept.c: Fix compile problem. * resolv/res_send.c (__libc_res_nsend): Take additional parameter. diff --git a/io/ftw.c b/io/ftw.c index 5495bc7ecc4..9cc09077ed1 100644 --- a/io/ftw.c +++ b/io/ftw.c @@ -1,5 +1,5 @@ /* File tree walker functions. - Copyright (C) 1996-2003, 2004, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1996-2004, 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. @@ -243,7 +243,7 @@ object_compare (const void *p1, const void *p2) } -static inline int +static int add_object (struct ftw_data *data, struct STAT *st) { struct known_object *newp = malloc (sizeof (struct known_object));