diff options
author | Matt Johnston <matt@ucc.asn.au> | 2016-03-10 21:37:35 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2016-03-10 21:37:35 +0800 |
commit | a991d3b56bdd2750c772cb48bc1b932ed1714ad3 (patch) | |
tree | d595af33e4b675dd7b229ed0922ac355413b38b4 /cli-runopts.c | |
parent | 26a1a0a3bc4420e57334d3ecc827f14ffcb9f24a (diff) | |
parent | a84ce21aece29167f3312c127912404f6e486146 (diff) |
merge github master
Diffstat (limited to 'cli-runopts.c')
-rw-r--r-- | cli-runopts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli-runopts.c b/cli-runopts.c index ab25d37..8d1edee 100644 --- a/cli-runopts.c +++ b/cli-runopts.c @@ -538,7 +538,7 @@ multihop_passthrough_args() { if (opts.recv_window != DEFAULT_RECV_WINDOW) { - int written = snprintf(ret+total, len-total, "-W %d ", opts.recv_window); + int written = snprintf(ret+total, len-total, "-W %u ", opts.recv_window); total += written; } |