aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_capture.c
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2015-05-21 15:16:18 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2015-05-21 15:16:18 +0000
commitcd508278c11d046bf7ce79ca39f6aabeb8c77f36 (patch)
tree75c54c4b08525bdc04b20414b8f285acb9730b5c /sys/ddb/db_capture.c
parent9c36af585e33d54a965f97f37d4e5d2abaff4e1e (diff)
downloadsrc-cd508278c11d046bf7ce79ca39f6aabeb8c77f36.tar.gz
src-cd508278c11d046bf7ce79ca39f6aabeb8c77f36.zip
ddb: finish converting boolean values.
The replacement started at r283088 was necessarily incomplete without replacing boolean_t with bool. This also involved cleaning some type mismatches and ansifying old C function declarations. Pointed out by: bde Discussed with: bde, ian, jhb
Notes
Notes: svn path=/head/; revision=283248
Diffstat (limited to 'sys/ddb/db_capture.c')
-rw-r--r--sys/ddb/db_capture.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/ddb/db_capture.c b/sys/ddb/db_capture.c
index 50ae2cf6c41a..de958d60a46d 100644
--- a/sys/ddb/db_capture.c
+++ b/sys/ddb/db_capture.c
@@ -331,8 +331,7 @@ db_capture_usage(void)
}
void
-db_capture_cmd(db_expr_t addr, boolean_t have_addr, db_expr_t count,
- char *modif)
+db_capture_cmd(db_expr_t addr, bool have_addr, db_expr_t count, char *modif)
{
int t;