diff options
Diffstat (limited to 'ddb')
-rw-r--r-- | ddb/db_cond.c | 3 | ||||
-rw-r--r-- | ddb/db_expr.c | 5 |
2 files changed, 2 insertions, 6 deletions
diff --git a/ddb/db_cond.c b/ddb/db_cond.c index 28b414e7..d45d9b8a 100644 --- a/ddb/db_cond.c +++ b/ddb/db_cond.c @@ -102,8 +102,7 @@ db_cond_check(db_thread_breakpoint_t bkpt) } void -db_cond_print(bkpt) - const db_thread_breakpoint_t bkpt; +db_cond_print(const db_thread_breakpoint_t bkpt) { char *p, *ep; struct db_cond *cp; diff --git a/ddb/db_expr.c b/ddb/db_expr.c index 9e20a840..90edb6fb 100644 --- a/ddb/db_expr.c +++ b/ddb/db_expr.c @@ -92,10 +92,7 @@ db_term(db_expr_t *valuep) } int -db_size_option(modif, u_option, t_option) - const char *modif; - boolean_t *u_option; - boolean_t *t_option; +db_size_option(const char *modif, boolean_t *u_option, boolean_t *t_option) { const char *p; int size = sizeof(int); |