Skip to content

Commit

Permalink
Fix pnl_mat_fprint was printing to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
jlelong committed Nov 4, 2023
1 parent 3771881 commit 45ab9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linalg/matrix_source.c
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ void FUNCTION(pnl_mat, print_csv)(const TYPE(PnlMat) *M, char sep)
*/
void FUNCTION(pnl_mat, fprint)(FILE *fic, const TYPE(PnlMat) *M)
{
FUNCTION(pnl_mat, fprint_csv)(stdout, M, ' ');
FUNCTION(pnl_mat, fprint_csv)(fic, M, ' ');
}

/**
Expand Down

0 comments on commit 45ab9c6

Please sign in to comment.