From 38c3449822162e7b7669c1cc7ca778afccb59406 Mon Sep 17 00:00:00 2001 From: Peter Pettersson Date: Sun, 3 Oct 2021 00:12:52 +0200 Subject: Make enum in includes C90 compliant by removing trailing comma. --- include/git2/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/git2/common.h') diff --git a/include/git2/common.h b/include/git2/common.h index 2ee829025..d62d9be18 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -147,7 +147,7 @@ typedef enum { * If set, libgit2 was built with support for sub-second resolution in file * modification times. */ - GIT_FEATURE_NSEC = (1 << 3), + GIT_FEATURE_NSEC = (1 << 3) } git_feature_t; /** -- cgit v1.2.1