Browse Source

Merge pull request #4666 from martin-frbg/issue4633

Fix spurious errors in the extended utest for INTERFACE64=1 on big-endian systems
tags/v0.3.28^2
Martin Kroeker GitHub 1 year ago
parent
commit
89e3fd0821
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      utest/test_extensions/xerbla.c

+ 2
- 2
utest/test_extensions/xerbla.c View File

@@ -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)
{
@@ -85,4 +85,4 @@ void set_xerbla(char* current_rout, int expected_info){
lerr = TRUE;
_info = expected_info;
rout = current_rout;
}
}

Loading…
Cancel
Save