diff options
Diffstat (limited to 'sys/ddb/db_watch.c')
-rw-r--r-- | sys/ddb/db_watch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c index 4cec857..9e99c05 100644 --- a/sys/ddb/db_watch.c +++ b/sys/ddb/db_watch.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_watch.c,v 1.8 1995/11/29 10:25:44 phk Exp $ + * $Id: db_watch.c,v 1.9 1995/12/07 12:45:05 davidg Exp $ */ /* @@ -54,7 +54,7 @@ static boolean_t db_watchpoints_inserted = TRUE; #define NWATCHPOINTS 100 -struct db_watchpoint db_watch_table[NWATCHPOINTS]; +static struct db_watchpoint db_watch_table[NWATCHPOINTS]; static db_watchpoint_t db_next_free_watchpoint = &db_watch_table[0]; static db_watchpoint_t db_free_watchpoints = 0; static db_watchpoint_t db_watchpoint_list = 0; |