From: Bruno Haible Date: Wed, 4 Oct 2006 16:56:38 +0000 (+0000) Subject: Fix return type. X-Git-Tag: cvs-readonly~1794 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=79b6b4a18153d33a2c795371c93b00afb201adac;p=gnulib.git Fix return type. --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 0b60f5b97..b47d068eb 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2006-10-03 Bruno Haible + + * gl_oset.c (gl_oset_add): Fix return type. + 2006-10-02 Dmitry V. Levin * fts.c (fts_close, fts_build, fts_palloc): Remove redundant checks. diff --git a/lib/gl_oset.c b/lib/gl_oset.c index a6733048b..69ae2b6ce 100644 --- a/lib/gl_oset.c +++ b/lib/gl_oset.c @@ -46,7 +46,7 @@ gl_oset_search (gl_oset_t set, const void *elt) return ((const struct gl_oset_impl_base *) set)->vtable->search (set, elt); } -void +bool gl_oset_add (gl_oset_t set, const void *elt) { return ((const struct gl_oset_impl_base *) set)->vtable->add (set, elt);