From 47e4c43cbec5f1ffa655f805fcf420016fbe0e78 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 13 Apr 2008 18:29:05 +0200 Subject: [PATCH] Remove stray semicolon. --- ChangeLog | 5 +++++ lib/git-merge-changelog.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4ef4f70d22..5b933f8e60 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-13 Bruno Haible + + * lib/git-merge-changelog.c: Remove empty declaration outside of + functions. + 2008-04-13 Bruno Haible * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD. diff --git a/lib/git-merge-changelog.c b/lib/git-merge-changelog.c index 1911c08e5c..c3ebf7f5ee 100644 --- a/lib/git-merge-changelog.c +++ b/lib/git-merge-changelog.c @@ -186,7 +186,7 @@ entry_equals (const void *elt1, const void *elt2) const struct entry *entry2 = (const struct entry *) elt2; return entry1->length == entry2->length && memcmp (entry1->string, entry2->string, entry1->length) == 0; -}; +} /* Return a hash code of the contents of a ChangeLog entry. */ static size_t -- 2.30.2