# HG changeset patch # User Paul Eggert # Date 1423358823 28800 # Node ID bfac2afaac8b30d31858616adbbf1f0b3938d59e # Parent b24d3b77f0ad80974763bfd138200d84a3052a41 xalloc: fix typo that suppressed warnings * lib/xalloc.h: Add missing _GL_INLINE_HEADER_END. This typo, introduced a couple of years ago, mistakenly suppressed some -Wsuggest-attribute=const, -Wmissing-prototypes, and -Wmissing-declarations warnings. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2015-02-07 Paul Eggert + xalloc: fix typo that suppressed warnings + * lib/xalloc.h: Add missing _GL_INLINE_HEADER_END. + This typo, introduced a couple of years ago, mistakenly suppressed + some -Wsuggest-attribute=const, -Wmissing-prototypes, and + -Wmissing-declarations warnings. + full-read: fix license notice typo * lib/full-read.h: Remove a stray line in the license notice. Reported by Sam Ellis in: http://bugs.gnu.org/19808 diff --git a/lib/xalloc.h b/lib/xalloc.h --- a/lib/xalloc.h +++ b/lib/xalloc.h @@ -258,5 +258,6 @@ #endif +_GL_INLINE_HEADER_END #endif /* !XALLOC_H_ */