From 20f2f6fc8420138f0785d338125c56e04bf86ba6 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 1 May 2020 21:12:11 +0200 Subject: [PATCH] revert last change, blas_quickdivide returns a signed int again --- common_x86_64.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common_x86_64.h b/common_x86_64.h index 9df75eb90..22d1debfc 100644 --- a/common_x86_64.h +++ b/common_x86_64.h @@ -1,4 +1,4 @@ -/*********************************************************************/ + /*********************************************************************/ /* Copyright 2009, 2010 The University of Texas at Austin. */ /* All rights reserved. */ /* */ @@ -199,7 +199,7 @@ static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){ #else extern unsigned int blas_quick_divide_table[]; -static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){ +static __inline int blas_quickdivide(unsigned int x, unsigned int y){ unsigned int result;