From 0a0ec7aed42f294456f40beebb14c8d18cc41dd9 Mon Sep 17 00:00:00 2001 From: pfg Date: Mon, 7 Apr 2014 01:49:30 +0000 Subject: MFC r263973; ddb: Minor style cleanups. #define should be followed by tab. --- sys/ddb/db_sym.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/ddb/db_sym.h') diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h index f68ccbc..e68be1f 100644 --- a/sys/ddb/db_sym.h +++ b/sys/ddb/db_sym.h @@ -63,8 +63,8 @@ typedef const char * c_db_sym_t; /* const opaque handle on symbols */ typedef int db_strategy_t; /* search strategy */ #define DB_STGY_ANY 0 /* anything goes */ -#define DB_STGY_XTRN 1 /* only external symbols */ -#define DB_STGY_PROC 2 /* only procedures */ +#define DB_STGY_XTRN 1 /* only external symbols */ +#define DB_STGY_PROC 2 /* only procedures */ /* * Functions exported by the symtable module @@ -78,11 +78,11 @@ c_db_sym_t db_search_symbol(db_addr_t, db_strategy_t, db_expr_t *); void db_symbol_values(c_db_sym_t, const char **, db_expr_t *); /* return name and value of symbol */ -#define db_find_sym_and_offset(val,namep,offp) \ +#define db_find_sym_and_offset(val,namep,offp) \ db_symbol_values(db_search_symbol(val,DB_STGY_ANY,offp),namep,0) /* find name&value given approx val */ -#define db_find_xtrn_sym_and_offset(val,namep,offp) \ +#define db_find_xtrn_sym_and_offset(val,namep,offp) \ db_symbol_values(db_search_symbol(val,DB_STGY_XTRN,offp),namep,0) /* ditto, but no locals */ -- cgit v1.1