Skip to content

Commit 12aabb9

Browse files
authored
fix conditional
1 parent fd0614c commit 12aabb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack/getf2/zgetf2_k.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ blasint CNAME(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, FLOAT *sa,
107107
temp2 = *(b + jp * 2 + 1);
108108

109109
// if ((temp1 != ZERO) || (temp2 != ZERO)) {
110-
if ((fabs(temp1) >= DBL_MIN) && (fabs(temp2) >= DBL_MIN)) {
110+
if ((fabs(temp1) >= DBL_MIN) || (fabs(temp2) >= DBL_MIN)) {
111111

112112
if (jp != j) {
113113
SWAP_K(j + 1, 0, 0, ZERO, ZERO, a + j * 2, lda,

0 commit comments

Comments
 (0)