diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-19 14:22:31 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-19 23:33:16 +0100 |
commit | c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6 (patch) | |
tree | b0dfa3fb6696453a921d088a0b0099fd1b8cd285 /ddb | |
parent | 4a1be513c08971b69d80f00478ade68cb25e7d3b (diff) | |
download | gnumach-c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6.tar.gz gnumach-c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6.tar.bz2 gnumach-c5134c7759b7a3f0c4ed0b57a1ab8e49666ee4b6.zip |
Remove existing old style definitions and use -Wold-style-definition.
Message-Id: <Y8mYd/pt/og4Tj5I@mercury.tail36e24.ts.net>
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); |