diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-15 11:48:39 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-15 21:42:30 +0100 |
commit | f885fde0a7177f954893be22efdf8c55c7c40fdb (patch) | |
tree | 1052965ca2da8f0e22142205d8fe1bb4de0fd531 /ddb/db_cond.h | |
parent | 442227ee5519f307e9f74030a9eeb7aa7983a4bc (diff) |
ddb: qualify pointers whose dereferenced values are constant with const
Diffstat (limited to 'ddb/db_cond.h')
-rw-r--r-- | ddb/db_cond.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddb/db_cond.h b/ddb/db_cond.h index dec4967..6b9c3a5 100644 --- a/ddb/db_cond.h +++ b/ddb/db_cond.h @@ -24,7 +24,7 @@ #include <sys/types.h> #include <machine/db_machdep.h> -extern void db_cond_free (db_thread_breakpoint_t bkpt); +extern void db_cond_free (const db_thread_breakpoint_t bkpt); extern boolean_t db_cond_check (db_thread_breakpoint_t bkpt); |