Skip to content

Commit e71b9bb

Browse files
authored
Update src/stdlib_intrinsics_matmul.fypp
1 parent 195c57e commit e71b9bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/stdlib_intrinsics_matmul.fypp

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ contains
141141
p(3) = size(m2, 2)
142142

143143
if (size(m1, 2) /= p(2)) then
144-
err0 = linalg_state_type(this, LINALG_VALUE_ERROR, 'matrices m1=',shape(m1),', m2=',shape(m2),'have incompatible sizes')
144+
err0 = linalg_state_type(this, LINALG_VALUE_ERROR, 'matrices m1=',shape(m1),&
145+
', m2=',shape(m2),'have incompatible sizes')
145146
call linalg_error_handling(err0, err)
146147
allocate(res(0, 0))
147148
return

0 commit comments

Comments
 (0)