Skip to content

Commit

Permalink
Merge pull request CEED#1424 from CEED/sjg/asan-vec-fix
Browse files Browse the repository at this point in the history
Minor function signature fix caught with ASan
  • Loading branch information
sebastiangrimberg authored Dec 12, 2023
2 parents 6d506a3 + 0836ce8 commit 4818fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/ref/ceed-ref-vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ static int CeedVectorGetArray_Ref(CeedVector vec, CeedMemType mem_type, CeedScal
//------------------------------------------------------------------------------
// Vector Get Array Write
//------------------------------------------------------------------------------
static int CeedVectorGetArrayWrite_Ref(CeedVector vec, CeedMemType mem_type, const CeedScalar **array) {
static int CeedVectorGetArrayWrite_Ref(CeedVector vec, CeedMemType mem_type, CeedScalar **array) {
CeedVector_Ref *impl;

CeedCallBackend(CeedVectorGetData(vec, &impl));
Expand Down

0 comments on commit 4818fbf

Please sign in to comment.