diff options
author | bde <bde@FreeBSD.org> | 2002-03-23 11:53:03 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-03-23 11:53:03 +0000 |
commit | f8611316d9b3a8d7d85e83a81e588a71e819584e (patch) | |
tree | 428a8724ec75a2d0da0323ad3dd24ad78ad42033 /sys/ddb/ddb.h | |
parent | d27d5e3b44ff619a0151aa86993697a211e61bc7 (diff) | |
download | FreeBSD-src-f8611316d9b3a8d7d85e83a81e588a71e819584e.zip FreeBSD-src-f8611316d9b3a8d7d85e83a81e588a71e819584e.tar.gz |
Fixed some style bugs in the removal of __P(()). Continuation lines
were not outdented to preserve non-KNF lining up of code with parentheses.
Switch to KNF formatting.
Diffstat (limited to 'sys/ddb/ddb.h')
-rw-r--r-- | sys/ddb/ddb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/ddb.h b/sys/ddb/ddb.h index fbaf5e6..8137a18 100644 --- a/sys/ddb/ddb.h +++ b/sys/ddb/ddb.h @@ -39,8 +39,8 @@ #include <machine/db_machdep.h> /* type definitions */ -typedef void db_cmdfcn_t(db_expr_t addr, boolean_t have_addr, - db_expr_t count, char *modif); +typedef void db_cmdfcn_t(db_expr_t addr, boolean_t have_addr, db_expr_t count, + char *modif); #define DB_COMMAND(cmd_name, func_name) \ DB_SET(cmd_name, func_name, db_cmd_set) |