diff options
author | Doug Rabson <dfr@FreeBSD.org> | 1998-06-07 17:13:14 +0000 |
---|---|---|
committer | Doug Rabson <dfr@FreeBSD.org> | 1998-06-07 17:13:14 +0000 |
commit | ecbb00a2629050fd720dc376a33c45f4ad767cea (patch) | |
tree | 1113fd99d363889650b503b7f993603f9423465a /sys/ddb/db_variables.c | |
parent | 37a8b7dcb8bdd78373c1d4afa4c423c119314e86 (diff) |
This commit fixes various 64bit portability problems required for
FreeBSD/alpha. The most significant item is to change the command
argument to ioctl functions from int to u_long. This change brings us
inline with various other BSD versions. Driver writers may like to
use (__FreeBSD_version == 300003) to detect this change.
The prototype FreeBSD/alpha machdep will follow in a couple of days
time.
Notes
Notes:
svn path=/head/; revision=36735
Diffstat (limited to 'sys/ddb/db_variables.c')
-rw-r--r-- | sys/ddb/db_variables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c index 0cab001585a0..74a45bbc28d1 100644 --- a/sys/ddb/db_variables.c +++ b/sys/ddb/db_variables.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_variables.c,v 1.13 1997/02/22 09:28:31 peter Exp $ + * $Id: db_variables.c,v 1.14 1997/06/14 11:52:37 bde Exp $ */ /* @@ -46,7 +46,7 @@ static int db_set_variable __P((db_expr_t value)); static struct db_variable db_vars[] = { { "radix", &db_radix, FCN_NULL }, - { "maxoff", (int *)&db_maxoff, FCN_NULL }, + { "maxoff", (long *)&db_maxoff, FCN_NULL }, { "maxwidth", &db_max_width, FCN_NULL }, { "tabstops", &db_tab_stop_width, FCN_NULL }, }; |