summaryrefslogtreecommitdiff
path: root/src/pqueue.h
diff options
context:
space:
mode:
authorPeter Pettersson <boretrk@hotmail.com>2021-10-22 22:51:59 +0200
committerPeter Pettersson <boretrk@hotmail.com>2021-11-15 16:45:40 +0100
commit7dcc29fc4652caeb09de39827cfd1a80726b5995 (patch)
tree74992ead7b05460f0d6a9fcc894f3dc9a3cbaea7 /src/pqueue.h
parent43d9f0e3fe96823d88475fd9edae07732c84dbc8 (diff)
downloadlibgit2-7dcc29fc4652caeb09de39827cfd1a80726b5995.tar.gz
Make enum in src,tests and examples C90 compliant by removing trailing comma.
Diffstat (limited to 'src/pqueue.h')
-rw-r--r--src/pqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pqueue.h b/src/pqueue.h
index c0a6cd49e..4db74ea03 100644
--- a/src/pqueue.h
+++ b/src/pqueue.h
@@ -15,7 +15,7 @@ typedef git_vector git_pqueue;
enum {
/* flag meaning: don't grow heap, keep highest values only */
- GIT_PQUEUE_FIXED_SIZE = (GIT_VECTOR_FLAG_MAX << 1),
+ GIT_PQUEUE_FIXED_SIZE = (GIT_VECTOR_FLAG_MAX << 1)
};
/**