diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2016-03-14 17:04:08 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2016-03-14 17:04:08 -0700 |
commit | 38241f2a0bd8909815cce67adb56d29619b19ad1 (patch) | |
tree | 0492997b6ec068f5d5abef4a113855a021d231df /sesman/tools/sestest.c | |
parent | 73935792058af2664ebb59108ba6b3fed8e8fcc0 (diff) | |
download | xrdp-proprietary-38241f2a0bd8909815cce67adb56d29619b19ad1.tar.gz xrdp-proprietary-38241f2a0bd8909815cce67adb56d29619b19ad1.zip |
Fix all format warnings and some unused variable warnings
Diffstat (limited to 'sesman/tools/sestest.c')
-rw-r--r-- | sesman/tools/sestest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sesman/tools/sestest.c b/sesman/tools/sestest.c index cf28f803..e1c09cf2 100644 --- a/sesman/tools/sestest.c +++ b/sesman/tools/sestest.c @@ -201,8 +201,8 @@ int inputSession(struct SCP_SESSION *s) } g_printf("session type:\n"); - g_printf("0: Xvnc\n", SCP_SESSION_TYPE_XVNC); - g_printf("1: x11rdp\n", SCP_SESSION_TYPE_XRDP); + g_printf("%d: Xvnc\n", SCP_SESSION_TYPE_XVNC); + g_printf("%d: x11rdp\n", SCP_SESSION_TYPE_XRDP); integer = menuSelect(1); if (integer == 1) |