[libtirpc] removing erronous * from cb_handle structure type
cb_handle was declared as HANDLE * instead of just HANDLE and then used as HANDLE. However, ran into issues with WaitOnSingleObject(cb_handle) never returning.
This commit is contained in:
parent
4af8bbf362
commit
b297d2bc78
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ typedef struct __rpc_client {
|
||||||
void *cl_private; /* private stuff */
|
void *cl_private; /* private stuff */
|
||||||
char *cl_netid; /* network token */
|
char *cl_netid; /* network token */
|
||||||
char *cl_tp; /* device name */
|
char *cl_tp; /* device name */
|
||||||
HANDLE *cb_thread;
|
HANDLE cb_thread;
|
||||||
int (*cb_xdr)(void *, void *);
|
int (*cb_xdr)(void *, void *);
|
||||||
int (*cb_fn)(void *, void *, void **);
|
int (*cb_fn)(void *, void *, void **);
|
||||||
void *cb_args;
|
void *cb_args;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue