diff options
author | Justus Winter <justus@gnupg.org> | 2017-09-21 13:26:48 +0200 |
---|---|---|
committer | Justus Winter <justus@gnupg.org> | 2017-09-25 13:06:11 +0200 |
commit | 5624d5437a35a82fa518fe0e33802a7a50f5bb15 (patch) | |
tree | 50ecf56ca69e6725f75c7cc5344fd0a304ae0f35 /eth-multiplexer | |
parent | 39a17aa65475b0115d824b99a6b4682cd4214af3 (diff) | |
download | hurd-5624d5437a35a82fa518fe0e33802a7a50f5bb15.tar.gz hurd-5624d5437a35a82fa518fe0e33802a7a50f5bb15.tar.bz2 hurd-5624d5437a35a82fa518fe0e33802a7a50f5bb15.zip |
eth-multiplexer: Fix debug macro.
* eth-multiplexer/util.h (debug): Avoid format string warning.
Diffstat (limited to 'eth-multiplexer')
-rw-r--r-- | eth-multiplexer/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eth-multiplexer/util.h b/eth-multiplexer/util.h index 1e062c40..e1b68855 100644 --- a/eth-multiplexer/util.h +++ b/eth-multiplexer/util.h @@ -36,9 +36,9 @@ #define debug(format, ...) do \ { \ - char buf[1024]; \ - snprintf (buf, 1024, "multiplexer: %s: %s\n", __func__, format); \ - fprintf (stderr , buf, ## __VA_ARGS__); \ + fprintf (stderr, "eth-multiplexer: %s: ", __func__); \ + fprintf (stderr, format, ## __VA_ARGS__); \ + fprintf (stderr, "\n"); \ fflush (stderr); \ } while (0) |