From df1b1f6a91461c5e0e7b3564693e4474d744bf19 Mon Sep 17 00:00:00 2001 From: Ken Ho Date: Fri, 12 May 2023 09:41:52 -0700 Subject: [PATCH] More detailed error message in [z]imatcopy.c. --- interface/imatcopy.c | 2 +- interface/zimatcopy.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/imatcopy.c b/interface/imatcopy.c index 495243949..c4417e99c 100644 --- a/interface/imatcopy.c +++ b/interface/imatcopy.c @@ -157,7 +157,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows, b = malloc(msize); if ( b == NULL ) { - printf("Memory alloc failed\n"); + printf("Memory alloc failed in imatcopy\n"); exit(1); } diff --git a/interface/zimatcopy.c b/interface/zimatcopy.c index 34454c582..b0b32dc87 100644 --- a/interface/zimatcopy.c +++ b/interface/zimatcopy.c @@ -186,7 +186,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows, b = malloc(msize); if ( b == NULL ) { - printf("Memory alloc failed\n"); + printf("Memory alloc failed in zimatcopy\n"); exit(1); }