From 4738e5acde5e5b239605fd561ac4401f9b432ba6 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 4 Sep 2014 06:26:06 -0600 Subject: [PATCH] error: drop spurious semicolon * lib/error.c (__error_at_line): Fix ';;'. Signed-off-by: Eric Blake --- ChangeLog | 5 +++++ lib/error.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b138dc2202..dc88544f06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-09-04 Eric Blake + + error: drop spurious semicolon + * lib/error.c (__error_at_line): Fix ';;'. + 2014-09-02 Paul Eggert gnulib-common.m4: port to GCC 4.2.1 and Sun Studio 12 C++ diff --git a/lib/error.c b/lib/error.c index 7b99cd7310..18ff5db12b 100644 --- a/lib/error.c +++ b/lib/error.c @@ -75,7 +75,7 @@ extern void __error (int status, int errnum, const char *message, ...) extern void __error_at_line (int status, int errnum, const char *file_name, unsigned int line_number, const char *message, ...) - __attribute__ ((__format__ (__printf__, 5, 6)));; + __attribute__ ((__format__ (__printf__, 5, 6))); # define error __error # define error_at_line __error_at_line -- 2.39.5