Skip to content

Commit

Permalink
Bug fix in vtDouble output
Browse files Browse the repository at this point in the history
  • Loading branch information
cpiker committed Sep 5, 2024
1 parent e999e03 commit 9e78ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion das2/vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ DasErrCode das_geovec_values(das_geovec* pVec, double* pValues)

case vtDouble:
memcpy(pValues, pVec->comp, (pVec->ncomp)*sizeof(double));
break;
return DAS_OKAY;
default: break;
}

Expand Down

0 comments on commit 9e78ba2

Please sign in to comment.