[BUILD] fix incorrect printf arg count with tcp_splice
remove an extra arg.
diff --git a/src/haproxy.c b/src/haproxy.c
index 7dae2d5..2a4ed6a 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -1054,7 +1054,7 @@
" Make sure you have enough permissions and that the module is loadable.\n"
" Alternatively, you may disable the 'tcpsplice' options in the configuration\n"
" or add 'nosplice' in the global section, or start with '-dS'.\n"
- "", argv[0], global.gid);
+ "", argv[0]);
protocol_unbind_all();
exit(1);
}