Deleted Added
full compact
36c36
< __FBSDID("$FreeBSD: head/sys/ddb/db_run.c 273006 2014-10-12 18:01:52Z pfg $");
---
> __FBSDID("$FreeBSD: head/sys/ddb/db_run.c 283088 2015-05-18 22:27:46Z pfg $");
90c90
< *is_breakpoint = FALSE;
---
> *is_breakpoint = false;
115,116c115,116
< *is_breakpoint = TRUE;
< return (TRUE); /* stop here */
---
> *is_breakpoint = true;
> return (true); /* stop here */
124c124
< *is_breakpoint = FALSE;
---
> *is_breakpoint = false;
128c128
< return (FALSE); /* continue */
---
> return (false); /* continue */
131c131
< return (FALSE); /* continue */
---
> return (false); /* continue */
140c140
< return (FALSE); /* continue */
---
> return (false); /* continue */
147c147
< ins = db_get_value(pc, sizeof(int), FALSE);
---
> ins = db_get_value(pc, sizeof(int), false);
163c163
< return (FALSE); /* continue */
---
> return (false); /* continue */
170c170
< ins = db_get_value(pc, sizeof(int), FALSE);
---
> ins = db_get_value(pc, sizeof(int), false);
174c174
< return (FALSE); /* continue */
---
> return (false); /* continue */
178c178
< return (TRUE);
---
> return (true);
196c196
< db_get_value(pc, sizeof(int), FALSE);
---
> db_get_value(pc, sizeof(int), false);
204c204
< sizeof(int), FALSE);
---
> sizeof(int), false);
269c269
< inst = db_get_value(pc, sizeof(int), FALSE);
---
> inst = db_get_value(pc, sizeof(int), false);
308c308
< boolean_t print = FALSE;
---
> boolean_t print = false;
314c314
< print = TRUE;
---
> print = true;
332c332
< boolean_t print = FALSE;
---
> boolean_t print = false;
335c335
< print = TRUE;
---
> print = true;
351c351
< boolean_t print = FALSE;
---
> boolean_t print = false;
354c354
< print = TRUE;
---
> print = true;