2002-10-31 Joel Sherrill <joel@OARcorp.com>

* stackchk/check.c: Removed warning.
This commit is contained in:
Joel Sherrill
2002-10-31 20:13:39 +00:00
parent c22aeb4ea3
commit a761f5650d
4 changed files with 14 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2002-10-31 Joel Sherrill <joel@OARcorp.com>
* stackchk/check.c: Removed warning.
2002-10-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* monitor/mon-command.c: Don't build rtems_monitor_line_editor for

View File

@@ -338,8 +338,9 @@ void Stack_check_report_blown_task(void)
fprintf(
stderr,
" Damaged pattern begins at 0x%08x and is %d bytes long\n",
(unsigned32) Stack_check_Get_pattern_area(stack), PATTERN_SIZE_BYTES);
" Damaged pattern begins at 0x%08lx and is %ld bytes long\n",
(unsigned long) Stack_check_Get_pattern_area(stack),
PATTERN_SIZE_BYTES);
fflush(stderr);
rtems_fatal_error_occurred( (unsigned32) "STACK BLOWN" );