Skip to content

Commit 1d77647

Browse files
authored
Merge pull request #4769 from drupol/fix-buffersize-value
openblas: fix `BUFFERSIZE` value
2 parents e1eef56 + 1b52e3d commit 1d77647

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)