Skip to content

Commit c2ba4e6

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lapack-netlib/LAPACKE/utils/lapacke_ztz_trans.c

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

149149
/* Copy & transpose triangular part */
150-
return LAPACKE_ztr_trans( matrix_layout, uplo, diag, tri_n,
151-
&in[tri_in_offset], ldin,
152-
&out[tri_out_offset], ldout );
150+
LAPACKE_ztr_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)