summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPavel Roskin <plroskin@gmail.com>2016-04-10 13:49:00 -0700
committerPavel Roskin <plroskin@gmail.com>2016-04-21 21:21:15 -0700
commitbd0b1acf794b2552b13bd4185c8eef91b2d9784c (patch)
tree7b7d220d9cad6c6c7ca3f52867d7c5b97f8ccd34 /tests
parent55e12a09d8297c62302a9a93414444f00dc8ec1c (diff)
downloadxrdp-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.c2
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;
}