Skip to content
Closed
Prev Previous commit
Next Next commit
Update src/js_native_api_v8.cc
  • Loading branch information
mhdawson authored Nov 15, 2021
commit f2c8ad6423b0df6e9d17134dc1fb5baa6e92df57
6 changes: 3 additions & 3 deletions src/js_native_api_v8.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1748,9 +1748,9 @@ napi_status napi_create_range_error(napi_env env,
}

napi_status node_api_create_syntax_error(napi_env env,
napi_value code,
napi_value msg,
napi_value* result) {
napi_value code,
napi_value msg,
napi_value* result) {
CHECK_ENV(env);
CHECK_ARG(env, msg);
CHECK_ARG(env, result);
Expand Down