mirror of
https://github.com/amd/blis.git
synced 2026-05-11 17:50:00 +00:00
Fixed printf() format overflow.
Details: - Increased the length of operation name strings passed to xerbla_() in the level-2 and level-3 operation _check() functions, found in frame/compat/check. This avoids a format specifier overflow warning by gcc 7. Thanks to Dave Love for reporting this issue and suggesting the fix.
This commit is contained in:
@@ -52,7 +52,7 @@
|
||||
|
||||
// -- Constants --
|
||||
|
||||
#define BLIS_MAX_BLAS_FUNC_STR_LENGTH (6+1)
|
||||
#define BLIS_MAX_BLAS_FUNC_STR_LENGTH (7+1)
|
||||
|
||||
|
||||
// -- Utility macros --
|
||||
|
||||
Reference in New Issue
Block a user