Skip to content

Commit df1b1f6

Browse files
committed
More detailed error message in [z]imatcopy.c.
1 parent 7a86c43 commit df1b1f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interface/imatcopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows,
157157
b = malloc(msize);
158158
if ( b == NULL )
159159
{
160-
printf("Memory alloc failed\n");
160+
printf("Memory alloc failed in imatcopy\n");
161161
exit(1);
162162
}
163163

interface/zimatcopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows,
186186
b = malloc(msize);
187187
if ( b == NULL )
188188
{
189-
printf("Memory alloc failed\n");
189+
printf("Memory alloc failed in zimatcopy\n");
190190
exit(1);
191191
}
192192

0 commit comments

Comments
 (0)