Skip to content

Commit

Permalink
Merge pull request #4666 from martin-frbg/issue4633
Browse files Browse the repository at this point in the history
Fix spurious errors in the extended utest for INTERFACE64=1 on big-endian systems
  • Loading branch information
martin-frbg committed Apr 29, 2024
2 parents 1031d16 + b1d722f commit 89e3fd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utest/test_extensions/xerbla.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static char *rout;

static void F77_xerbla(char *srname, void *vinfo)
{
int info=*(int*)vinfo;
blasint info=*(blasint*)vinfo;

if (link_xerbla)
{
Expand Down Expand Up @@ -85,4 +85,4 @@ void set_xerbla(char* current_rout, int expected_info){
lerr = TRUE;
_info = expected_info;
rout = current_rout;
}
}

0 comments on commit 89e3fd0

Please sign in to comment.