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 /clients/xzwrite/zephyr.c | |
parent | e3b556f8fa2e51a3f34266ad671a0d3b1551c088 (diff) |
fix argument types for zeph_dispatch()
Diffstat (limited to 'clients/xzwrite/zephyr.c')
-rw-r--r-- | clients/xzwrite/zephyr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |