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 0b60f5b..b47d068 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 a673304..69ae2b6 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);