Skip to content

Commit b9ce913

Browse files
authored
Fix missing comma in be_maplib.c (#462)
1 parent ae2a3b3 commit b9ce913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/be_maplib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ void be_load_maplib(bvm *vm)
236236
{ "insert", m_insert },
237237
{ "iter", m_iter },
238238
{ "keys", m_keys },
239-
{ "tobool", m_tobool }
239+
{ "tobool", m_tobool },
240240
{ NULL, NULL }
241241
};
242242
be_regclass(vm, "map", members);

0 commit comments

Comments
 (0)