From 9ad36356dd13b53667a51020c9aef0d4e014af01 Mon Sep 17 00:00:00 2001 From: Beat Bolli Date: Mon, 9 Jul 2018 21:25:35 +0200 Subject: sequencer.c: avoid empty statements at top level The macro GIT_PATH_FUNC expands to a function definition that ends with a closing brace. Remove two extra semicolons. While at it, fix the example in path.h. Signed-off-by: Beat Bolli Signed-off-by: Junio C Hamano --- path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'path.h') diff --git a/path.h b/path.h index 1ccd0373c9..fc9d3487a0 100644 --- a/path.h +++ b/path.h @@ -147,7 +147,7 @@ extern void report_linked_checkout_garbage(void); /* * You can define a static memoized git path like: * - * static GIT_PATH_FUNC(git_path_foo, "FOO"); + * static GIT_PATH_FUNC(git_path_foo, "FOO") * * or use one of the global ones below. */ -- cgit v1.2.3