Skip to content

Commit 4a1d00f

Browse files
committed
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.
1 parent 2966845 commit 4a1d00f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

kernel/x86_64/dgemm_tcopy_16_skylakex.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,5 @@ int CNAME(BLASLONG dim_second, BLASLONG dim_first, double *src, BLASLONG lead_di
126126
}
127127
src1 += src_inc;
128128
}
129+
return 0;
129130
}

0 commit comments

Comments
 (0)