diff options
Diffstat (limited to 'oldXMenu/X10.h')
-rw-r--r-- | oldXMenu/X10.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oldXMenu/X10.h b/oldXMenu/X10.h index 6b0626f212c..c30632b9d68 100644 --- a/oldXMenu/X10.h +++ b/oldXMenu/X10.h @@ -54,7 +54,7 @@ typedef struct _XAssoc { struct _XAssoc *prev; /* Previous obejct in this bucket. */ Display *display; /* Display which owns the id. */ XID x_id; /* X Window System id. */ - char *data; /* Pointer to untyped memory. */ + void *data; /* Pointer to untyped memory. */ } XAssoc; /* @@ -75,4 +75,3 @@ XAssocTable *XCreateAssocTable(int size); char *XLookUpAssoc(Display *dpy, XAssocTable *table, XID x_id); #endif /* _X10_H_ */ - |