diff options
author | Mattias Andrée <maandree@kth.se> | 2020-06-21 12:31:48 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-06-21 12:31:48 +0200 |
commit | b801444251f6c342c3daad2152f9a4f7215ea8ee (patch) | |
tree | 1a885c36a5a1fd7ac44b96eb2332434524606c5f /util.c | |
parent | Fix CASE macro: tprintf is returns void, so return in separate statement (diff) | |
download | sctrace-b801444251f6c342c3daad2152f9a4f7215ea8ee.tar.gz sctrace-b801444251f6c342c3daad2152f9a4f7215ea8ee.tar.bz2 sctrace-b801444251f6c342c3daad2152f9a4f7215ea8ee.tar.xz |
Fix some warnings and move include statement to common.h
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | util.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,11 @@ #include "common.h" +#if defined(__GNUC__) || defined(__clang__) +# pragma GCC diagnostic ignored "-Wformat-nonliteral" +#endif + + static FILE *trace_fp; static char last_char = '\n'; static pid_t last_pid = 0; |