diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-04-10 13:49:00 -0700 |
---|---|---|
committer | Pavel Roskin <plroskin@gmail.com> | 2016-04-21 21:21:15 -0700 |
commit | bd0b1acf794b2552b13bd4185c8eef91b2d9784c (patch) | |
tree | 7b7d220d9cad6c6c7ca3f52867d7c5b97f8ccd34 /tests | |
parent | 55e12a09d8297c62302a9a93414444f00dc8ec1c (diff) | |
download | xrdp-proprietary-bd0b1acf794b2552b13bd4185c8eef91b2d9784c.tar.gz xrdp-proprietary-bd0b1acf794b2552b13bd4185c8eef91b2d9784c.zip |
Fix format warnings caused by g_writeln("")
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tcp_proxy/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcp_proxy/main.c b/tests/tcp_proxy/main.c index 26c974cd..3a62c98c 100644 --- a/tests/tcp_proxy/main.c +++ b/tests/tcp_proxy/main.c @@ -109,7 +109,7 @@ g_hexdump(char *p, int len) g_printf("%c", (line[i] >= 0x20 && line[i] < 0x7f) ? line[i] : '.'); } - g_writeln(""); + g_writeln("%s", ""); offset += thisline; line += thisline; } |