Skip to content

Commit ba82fda

Browse files
committed
Merge branch 'jh/object-filtering'
Hotfix for a topic already in 'master'. * jh/object-filtering: oidset: don't return value from oidset_init
2 parents 453f3fe + 03e7833 commit ba82fda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oidset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct oidset {
2727

2828
static inline void oidset_init(struct oidset *set, size_t initial_size)
2929
{
30-
return oidmap_init(&set->map, initial_size);
30+
oidmap_init(&set->map, initial_size);
3131
}
3232

3333
/**

0 commit comments

Comments
 (0)