diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2017-02-01 21:42:37 -0800 |
---|---|---|
committer | jsorg71 <jay.sorg@gmail.com> | 2017-02-22 20:39:56 -0800 |
commit | 7825246d7a1421677a7cd6b6cfcad089bfc81d11 (patch) | |
tree | 1efa58afb00d05b176376ac2924e9328eb3cbbba /xup | |
parent | 2424a9c020d3644323caca8f29ae5b3b2c355de1 (diff) | |
download | xrdp-proprietary-7825246d7a1421677a7cd6b6cfcad089bfc81d11.tar.gz xrdp-proprietary-7825246d7a1421677a7cd6b6cfcad089bfc81d11.zip |
fix warning new since stdint.h change
Diffstat (limited to 'xup')
-rw-r--r-- | xup/xup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |