Skip to content

Commit

Permalink
Add missing break
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Oct 28, 2022
1 parent ed5595f commit 792ad30
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bun.js/ffi.exports.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ function FFIBuilder(params, returnType, functionToCall, name) {
case 5:
wrap = (arg1, arg2, arg3, arg4, arg5) =>
func(functionToCall, arg1, arg2, arg3, arg4, arg5);
break;
case 6:
wrap = (arg1, arg2, arg3, arg4, arg5, arg6) =>
func(functionToCall, arg1, arg2, arg3, arg4, arg5, arg6);
Expand Down

0 comments on commit 792ad30

Please sign in to comment.