From 6b96e6dfad408d3fdebd6a9851328d1395018033 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 1 May 2020 16:01:42 +0200 Subject: [PATCH] make blas_quickdivide actually return unsigned (to placate clang) --- common_x86_64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_x86_64.h b/common_x86_64.h index 1acc36b83..9df75eb90 100644 --- a/common_x86_64.h +++ b/common_x86_64.h @@ -199,7 +199,7 @@ static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){ #else extern unsigned int blas_quick_divide_table[]; -static __inline int blas_quickdivide(unsigned int x, unsigned int y){ +static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){ unsigned int result;