aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-08-20 21:39:28 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-08-20 21:39:28 +0000
commit6bdef94d873c4ff849a9341f03ed5577171a4107 (patch)
treec17918f9984fd6791e98d3bb4e4c71f9cac75ddc /gnu
parent34c91739bedd16dcecb95b89e17659feca2c19ce (diff)
downloadsrc-6bdef94d873c4ff849a9341f03ed5577171a4107.tar.gz
src-6bdef94d873c4ff849a9341f03ed5577171a4107.zip
Change the aux field type to long instead of int so that it is large
enough to hold a man-sized pointer.
Notes
Notes: svn path=/head/; revision=38461
Diffstat (limited to 'gnu')
-rw-r--r--gnu/lib/libdialog/dialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libdialog/dialog.h b/gnu/lib/libdialog/dialog.h
index dace69e6d1d2..76011b460081 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"