Skip to content

Commit 74962c7

Browse files
authored
Remove unnecessary return in void function call (Reference-LAPACK PR760)
1 parent d952cbf commit 74962c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lapack-netlib/LAPACKE/utils/lapacke_stz_trans.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void LAPACKE_stz_trans( int matrix_layout, char direct, char uplo,
147147
}
148148

149149
/* Copy & transpose triangular part */
150-
return LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
151-
&in[tri_in_offset], ldin,
152-
&out[tri_out_offset], ldout );
150+
LAPACKE_str_trans( matrix_layout, uplo, diag, tri_n,
151+
&in[tri_in_offset], ldin,
152+
&out[tri_out_offset], ldout );
153153
}

0 commit comments

Comments
 (0)