summaryrefslogtreecommitdiff
path: root/src/revobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/revobject.c')
-rw-r--r--src/revobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/revobject.c b/src/revobject.c
index caa749d19..32d5e6464 100644
--- a/src/revobject.c
+++ b/src/revobject.c
@@ -45,7 +45,7 @@ git_revpool_table *git_revpool_table_create(unsigned int min_size)
if (table == NULL)
return NULL;
- // round up size to closest power of 2
+ /* round up size to closest power of 2 */
min_size--;
min_size |= min_size >> 1;
min_size |= min_size >> 2;