diff options
author | ArvidNorr <norrarvid@gmail.com> | 2012-06-17 23:14:40 -0700 |
---|---|---|
committer | ArvidNorr <norrarvid@gmail.com> | 2012-06-17 23:14:40 -0700 |
commit | 1011b4a25656fed871ddb6e8d782f65fa0e97d9f (patch) | |
tree | b67ba22d0ca3151c24eaa4409b3cbe1e49af6c85 /sesman/chansrv/chansrv.c | |
parent | 4ba8cdc343d96cd449c18c107f623e8e73d2d470 (diff) | |
parent | 31a5dd33ddfa86e195469dff776e7ca1cf4d7b06 (diff) | |
download | xrdp-proprietary-1011b4a25656fed871ddb6e8d782f65fa0e97d9f.tar.gz xrdp-proprietary-1011b4a25656fed871ddb6e8d782f65fa0e97d9f.zip |
Merge pull request #22 from ArvidNorr/moduleload
Moduleload
Diffstat (limited to 'sesman/chansrv/chansrv.c')
-rw-r--r-- | sesman/chansrv/chansrv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sesman/chansrv/chansrv.c b/sesman/chansrv/chansrv.c index 1abeeca6..41176752 100644 --- a/sesman/chansrv/chansrv.c +++ b/sesman/chansrv/chansrv.c @@ -448,7 +448,7 @@ channel_thread_loop(void* in_val) num_objs = 0; objs[num_objs] = g_term_event; num_objs++; - trans_get_wait_objs(g_lis_trans, objs, &num_objs, &timeout); + trans_get_wait_objs(g_lis_trans, objs, &num_objs); while (g_obj_wait(objs, num_objs, 0, 0, timeout) == 0) { if (g_is_wait_obj_set(g_term_event)) @@ -493,8 +493,8 @@ channel_thread_loop(void* in_val) num_objs = 0; objs[num_objs] = g_term_event; num_objs++; - trans_get_wait_objs(g_lis_trans, objs, &num_objs, &timeout); - trans_get_wait_objs(g_con_trans, objs, &num_objs, &timeout); + trans_get_wait_objs(g_lis_trans, objs, &num_objs); + trans_get_wait_objs(g_con_trans, objs, &num_objs); clipboard_get_wait_objs(objs, &num_objs, &timeout); sound_get_wait_objs(objs, &num_objs, &timeout); dev_redir_get_wait_objs(objs, &num_objs, &timeout); |