diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2012-06-10 23:47:08 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2012-06-10 23:47:08 -0700 |
commit | 856783ba95e46561ee1776a22b03900e7f0e7286 (patch) | |
tree | 36b1b5a054707b3db3b446fbd13401cf78793f3f /sesman/tools | |
parent | 099a421c7706ea5d7706890d7a3f12a4ccf7c126 (diff) | |
download | xrdp-proprietary-856783ba95e46561ee1776a22b03900e7f0e7286.tar.gz xrdp-proprietary-856783ba95e46561ee1776a22b03900e7f0e7286.zip |
no logic changes, remove warnings and coding style changes
Diffstat (limited to 'sesman/tools')
-rw-r--r-- | sesman/tools/sestest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sesman/tools/sestest.c b/sesman/tools/sestest.c index 1ba119e0..c0784ba3 100644 --- a/sesman/tools/sestest.c +++ b/sesman/tools/sestest.c @@ -206,7 +206,7 @@ menuSelect(tui32 choices) ret = scanf("%u", &sel); - while ((ret==0) || (sel > choices)) + while ((ret == 0) || (sel > choices)) { g_printf("invalid choice."); ret = scanf("%u", &sel); |