2003-06-04 Joel Sherrill <joel@OARcorp.com>

* stackchk/check.c: Removed warnings.
This commit is contained in:
Joel Sherrill
2003-06-04 20:34:03 +00:00
parent 97a95490c8
commit 85eb9544cf
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2003-06-04 Joel Sherrill <joel@OARcorp.com>
* stackchk/check.c: Removed warnings.
2003-04-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* dummy/Makefile.am: Remove stray dummy.rel.

View File

@@ -460,7 +460,7 @@ void Stack_check_Dump_threads_usage(
if ( info->is_string ) {
name = (char *) the_thread->Object.name;
} else {
u32_name = (unsigned32 *)the_thread->Object.name;
u32_name = *(unsigned32 *)the_thread->Object.name;
name[ 0 ] = (u32_name >> 24) & 0xff;
name[ 1 ] = (u32_name >> 16) & 0xff;
name[ 2 ] = (u32_name >> 8) & 0xff;