diff options
author | jb <jb@FreeBSD.org> | 1998-08-20 21:39:28 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-20 21:39:28 +0000 |
commit | 3d49984384c48f7f5113b3da921893ce6a7e4eb5 (patch) | |
tree | f396d881f88bc9029604dcc642c7ba4cc9ebcced /gnu | |
parent | bc2aa8b61ac0df0da191f4b5f3e71139d17b975f (diff) | |
download | FreeBSD-src-3d49984384c48f7f5113b3da921893ce6a7e4eb5.zip FreeBSD-src-3d49984384c48f7f5113b3da921893ce6a7e4eb5.tar.gz |
Change the aux field type to long instead of int so that it is large
enough to hold a man-sized pointer.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libdialog/dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libdialog/dialog.h b/gnu/lib/libdialog/dialog.h index dace69e..76011b4 100644 --- a/gnu/lib/libdialog/dialog.h +++ b/gnu/lib/libdialog/dialog.h @@ -67,7 +67,7 @@ typedef struct _dmenu_item { void (*selected)(struct _dmenu_item *self, int is_selected); void *data; char lbra, mark, rbra; - int aux; + long aux; } dialogMenuItem; #define VERSION "0.4" |