Skip to content

Commit 1b52e3d

Browse files
committed
openblas: fix BUFFERSIZE value
1 parent 1ba1b9c commit 1b52e3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common_x86_64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
253253
#ifndef BUFFERSIZE
254254
#define BUFFER_SIZE (32 << 22)
255255
#else
256-
#define BUFFER_SIZE (32 << BUFFERSIZE)
256+
#define BUFFER_SIZE (32UL << BUFFERSIZE)
257257
#endif
258258

259259
#define SEEK_ADDRESS

0 commit comments

Comments
 (0)