diff options
author | John F. Carr <jfc@mit.edu> | 1991-03-23 05:57:28 +0000 |
---|---|---|
committer | John F. Carr <jfc@mit.edu> | 1991-03-23 05:57:28 +0000 |
commit | c883cb5902b4db32db9a53671134e37cd3d7f34a (patch) | |
tree | 65567952efba0af2d4dfd013a64cd7592851c9a2 | |
parent | e3b556f8fa2e51a3f34266ad671a0d3b1551c088 (diff) |
fix argument types for zeph_dispatch()
-rw-r--r-- | clients/xzwrite/xzwrite-proto.h | 2 | ||||
-rw-r--r-- | clients/xzwrite/zephyr.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clients/xzwrite/xzwrite-proto.h b/clients/xzwrite/xzwrite-proto.h index feed86b..b8f8cea 100644 --- a/clients/xzwrite/xzwrite-proto.h +++ b/clients/xzwrite/xzwrite-proto.h @@ -56,7 +56,7 @@ void edit_yank_next P((void )); void edit_yank_store P((void )); /* zephyr.c */ -void zeph_dispatch P((caddr_t client_data , int source , XtInputId *input_id )); +void zeph_dispatch P((XtPointer client_data , int *source , XtInputId *input_id )); void zeph_init P((void )); int zeph_locateable P((char *user )); void zeph_subto_logins P((char **users , int num )); diff --git a/clients/xzwrite/zephyr.c b/clients/xzwrite/zephyr.c index 88e1295..8e64ae3 100644 --- a/clients/xzwrite/zephyr.c +++ b/clients/xzwrite/zephyr.c @@ -8,8 +8,8 @@ extern Defaults defs; /* ARGSUSED */ void zeph_dispatch(client_data, source, input_id) - caddr_t client_data; - int source; + XtPointer client_data; + int *source; XtInputId *input_id; { ZNotice_t notice; |