diff options
author | Daan Leijen <daan@microsoft.com> | 2022-04-14 16:12:02 -0700 |
---|---|---|
committer | Daan Leijen <daan@microsoft.com> | 2022-04-14 16:12:02 -0700 |
commit | f819dbb4e4813fab464aee16770f39f11476bfea (patch) | |
tree | b4d4dc3fa6b3a7bf6c6b4c50e64cf2850c3d419e | |
parent | 12a3a4c51a30e9de0943a5065c7a1f3e1ad6a093 (diff) |
fix trailing comma
-rw-r--r-- | src/options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.c b/src/options.c index ecd28db..b07e0e7 100644 --- a/src/options.c +++ b/src/options.c @@ -94,7 +94,7 @@ static mi_option_desc_t options[_mi_option_last] = { 8, UNINIT, MI_OPTION(max_segment_reclaim)},// max. number of segment reclaims from the abandoned segments per try. { 1, UNINIT, MI_OPTION(allow_decommit) }, // decommit slices when no longer used (after decommit_delay milli-seconds) { 500, UNINIT, MI_OPTION(segment_decommit_delay) }, // decommit delay in milli-seconds for freed segments - { 2, UNINIT, MI_OPTION(decommit_extend_delay) }, + { 2, UNINIT, MI_OPTION(decommit_extend_delay) } }; static void mi_option_init(mi_option_desc_t* desc); |