Skip to content

Commit

Permalink
More specific test
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Feb 5, 2025
1 parent 33b6b07 commit 617fbbf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugins/rfio/rawapi/rawCliProcn.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@
#include "rawentn.h"
#include "rawapplcli.h"

#ifdef __GNUC__
#if defined(__GNUC__) && (__GNUC__ >= 11)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-truncation"
#endif

Expand Down Expand Up @@ -3960,3 +3961,7 @@ unsigned long ielpst_( unsigned long *iScale,
return( ielpst( *iScale, iBuf ) );
} /* ielpst_ */
#endif

#if defined(__GNUC__) && (__GNUC__ >= 11)
#pragma GCC diagnostic pop
#endif

0 comments on commit 617fbbf

Please sign in to comment.