Fix return type.
authorBruno Haible <bruno@clisp.org>
Wed, 4 Oct 2006 16:56:38 +0000 (16:56 +0000)
committerBruno Haible <bruno@clisp.org>
Wed, 4 Oct 2006 16:56:38 +0000 (16:56 +0000)
lib/ChangeLog
lib/gl_oset.c

index 0b60f5b97ecce2dc29cc50d95d7a227ef7414b2b..b47d068ebd2d9eac1b360e88fcbd1bca578cd1c3 100644 (file)
@@ -1,3 +1,7 @@
+2006-10-03  Bruno Haible  <bruno@clisp.org>
+
+       * gl_oset.c (gl_oset_add): Fix return type.
+
 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
 
        * fts.c (fts_close, fts_build, fts_palloc): Remove redundant checks.
index a6733048bc3bac1d035ab9cf800ee0c96508285b..69ae2b6ce7772de3b37e2479748da252a0c5e55e 100644 (file)
@@ -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);