openblas: fix `BUFFERSIZE` value

This commit is contained in:
Pol Dellaiera 2024-06-28 08:33:38 +02:00
parent 1ba1b9c357
commit 1b52e3dcfa
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
#ifndef BUFFERSIZE #ifndef BUFFERSIZE
#define BUFFER_SIZE (32 << 22) #define BUFFER_SIZE (32 << 22)
#else #else
#define BUFFER_SIZE (32 << BUFFERSIZE) #define BUFFER_SIZE (32UL << BUFFERSIZE)
#endif #endif
#define SEEK_ADDRESS #define SEEK_ADDRESS