Make ddb variables long (for 64bit archs). from netbsd
authorniklas <niklas@openbsd.org>
Fri, 21 Mar 1997 00:41:17 +0000 (00:41 +0000)
committerniklas <niklas@openbsd.org>
Fri, 21 Mar 1997 00:41:17 +0000 (00:41 +0000)
sys/ddb/db_variables.c
sys/ddb/db_variables.h

index f7e96b2..c2b517d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_variables.c,v 1.5 1996/04/21 22:19:18 deraadt Exp $        */
+/*     $OpenBSD: db_variables.c,v 1.6 1997/03/21 00:41:17 niklas Exp $ */
 /*     $NetBSD: db_variables.c,v 1.8 1996/02/05 01:57:19 christos Exp $        */
 
 /* 
 #include <ddb/db_var.h>
 
 struct db_variable db_vars[] = {
-       { "radix",      &db_radix, FCN_NULL },
-       { "maxoff",     (int *)&db_maxoff, FCN_NULL },
-       { "maxwidth",   &db_max_width, FCN_NULL },
-       { "tabstops",   &db_tab_stop_width, FCN_NULL },
-       { "lines",      &db_max_line, FCN_NULL },
+       { "radix",      (long *)&db_radix, FCN_NULL },
+       { "maxoff",     (long *)&db_maxoff, FCN_NULL },
+       { "maxwidth",   (long *)&db_max_width, FCN_NULL },
+       { "tabstops",   (long *)&db_tab_stop_width, FCN_NULL },
+       { "lines",      (long *)&db_max_line, FCN_NULL },
 };
 struct db_variable *db_evars = db_vars + sizeof(db_vars)/sizeof(db_vars[0]);
 
index 830451c..1d17e20 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_variables.h,v 1.4 1996/04/21 22:19:19 deraadt Exp $        */
+/*     $OpenBSD: db_variables.h,v 1.5 1997/03/21 00:41:19 niklas Exp $ */
 /*     $NetBSD: db_variables.h,v 1.5 1996/02/05 01:57:21 christos Exp $        */
 
 /* 
@@ -38,7 +38,7 @@
  */
 struct db_variable {
        char    *name;          /* Name of variable */
-       int     *valuep;        /* value of variable */
+       long    *valuep;        /* value of variable */
                                /* function to call when reading/writing */
        int     (*fcn) __P((struct db_variable *, db_expr_t *, int));
 #define DB_VAR_GET     0