mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 19:50:13 +08:00
gprofng/testsuite: eliminate bogus casts
Casting pointers to unsigned int is generally problematic and hence compilers tend to warn about such. While here they're used only in fprintf(), it still seems better to omit such casts, even if only to avoid setting bad precedents.
This commit is contained in:
@ -32,7 +32,7 @@ so_cputime ()
|
||||
/* put a memory leak in here */
|
||||
(void) malloc (13);
|
||||
|
||||
fprintf (stderr, "so_burncpu @ 0x%08x\n", (unsigned int) so_burncpu);
|
||||
fprintf (stderr, "so_burncpu @ %p\n", so_burncpu);
|
||||
so_burncpu ();
|
||||
|
||||
wlog ("end of so_cputime", NULL);
|
||||
|
@ -32,7 +32,7 @@ sx_cputime ()
|
||||
/* put a memory leak in here */
|
||||
(void) malloc (13);
|
||||
|
||||
fprintf (stderr, "sx_burncpu @ 0x%08x\n", (unsigned int) sx_burncpu);
|
||||
fprintf (stderr, "sx_burncpu @ %p\n", sx_burncpu);
|
||||
sx_burncpu ();
|
||||
wlog ("end of sx_cputime", NULL);
|
||||
return 13;
|
||||
|
Reference in New Issue
Block a user