mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Remove bogus cast.
This commit is contained in:
parent
0c89fa0c34
commit
80e9dc4f08
1 changed files with 1 additions and 1 deletions
|
|
@ -200,7 +200,7 @@ main(argc, argv)
|
|||
qsort(tcp_pcbs, npcbs, sizeof(caddr_t), numeric);
|
||||
if (jflag) {
|
||||
for (i = 0;;) {
|
||||
printf("%x", (int)tcp_pcbs[i]);
|
||||
printf("%x", tcp_pcbs[i]);
|
||||
if (++i == npcbs)
|
||||
break;
|
||||
fputs(", ", stdout);
|
||||
|
|
|
|||
Loading…
Reference in a new issue