Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
coshcage authored Sep 9, 2023
1 parent ecbdc52 commit d97351b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sicore.c
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ P_MATRIX siCreateDifferenceView(P_MATRIX pmtxa, P_MATRIX pmtxb)
P_MATRIX siCreateCartesianProductView(P_MATRIX pma, P_MATRIX pmb)
{
size_t m, n;
P_MATRIX pmr = strCreateMatrix(m = pma->ln * pmb->ln, n = pma->col + pma->col, sizeof(P_CELL));
P_MATRIX pmr = strCreateMatrix(m = pma->ln * pmb->ln, n = pma->col + pmb->col, sizeof(P_CELL));
if (NULL != pmr)
{
REGISTER size_t i, x, y;
Expand Down

0 comments on commit d97351b

Please sign in to comment.