Skip to content

Commit

Permalink
Fix missing ) in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelgk committed Jan 18, 2024
1 parent 0f89ccb commit b6fe686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/c74_min_operator_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ namespace c74::min {
if (max::object_classname(in_matrix) != max::_jit_sym_jit_matrix)
in_matrix = static_cast<max::t_object*>(max::object_method(in_matrix, static_cast<max::t_symbol*>(k_sym_getmatrix)));
if (max::object_classname(out_matrix) != max::_jit_sym_jit_matrix)
out_matrix = static_cast<max::t_object*>(max::object_method(out_matrix, static_cast<max::t_symbol*>(k_sym_getmatrix));
out_matrix = static_cast<max::t_object*>(max::object_method(out_matrix, static_cast<max::t_symbol*>(k_sym_getmatrix)));

if (!self || !in_matrix || !out_matrix)
err = max::JIT_ERR_INVALID_PTR;
Expand Down

0 comments on commit b6fe686

Please sign in to comment.