mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
Use %p to print a pointer, not %lx and a cast to (unsigned long). Yuck.
This commit is contained in:
parent
bea86ac44d
commit
536ceed1fc
1 changed files with 1 additions and 1 deletions
|
|
@ -1311,6 +1311,6 @@ PrintAddr(a, b)
|
|||
void * a;
|
||||
void * b __unused;
|
||||
{
|
||||
printf("%lx ", (unsigned long) a);
|
||||
printf("%p ", a);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue