summaryrefslogtreecommitdiffstats
path: root/xup
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2017-02-01 21:42:37 -0800
committerjsorg71 <jay.sorg@gmail.com>2017-02-22 20:39:56 -0800
commit7825246d7a1421677a7cd6b6cfcad089bfc81d11 (patch)
tree1efa58afb00d05b176376ac2924e9328eb3cbbba /xup
parent2424a9c020d3644323caca8f29ae5b3b2c355de1 (diff)
downloadxrdp-proprietary-7825246d7a1421677a7cd6b6cfcad089bfc81d11.tar.gz
xrdp-proprietary-7825246d7a1421677a7cd6b6cfcad089bfc81d11.zip
fix warning new since stdint.h change
Diffstat (limited to 'xup')
-rw-r--r--xup/xup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xup/xup.c b/xup/xup.c
index bff29727..65ccc34c 100644
--- a/xup/xup.c
+++ b/xup/xup.c
@@ -212,7 +212,7 @@ lib_mod_connect(struct mod *mod)
if (trans_connect(mod->trans, mod->ip, con_port, 3000) == 0)
{
LLOGLN(0, ("lib_mod_connect: connected to Xserver "
- "(Xorg or X11rdp) sck %ld", mod->trans->sck));
+ "(Xorg or X11rdp) sck %ld", (long) (mod->trans->sck)));
error = 0;
}