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:
Field G. Van Zee
2018-03-16 12:24:07 -05:00
parent c73055f028
commit 3d1a5a7c08

View File

@@ -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 --