Fix build with -Werror=return-type

dgemm_tcopy_16_skylakex.c CNAME function should return an int, add a
return 0 similar to other files.
This commit is contained in:
İsmail Dönmez
2020-10-21 08:43:39 +02:00
parent 29668458f7
commit 4a1d00f589

View File

@@ -126,4 +126,5 @@ int CNAME(BLASLONG dim_second, BLASLONG dim_first, double *src, BLASLONG lead_di
}
src1 += src_inc;
}
return 0;
}