mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
log routine called w/ %ld and int argument, cast argument to long
This commit is contained in:
parent
2326da5db5
commit
e74e9032da
1 changed files with 1 additions and 1 deletions
|
|
@ -472,7 +472,7 @@ cisco_input(sc_p sc, item_p item)
|
|||
default:
|
||||
log(LOG_WARNING,
|
||||
"cisco: unknown cisco packet type: 0x%lx\n",
|
||||
ntohl(p->type));
|
||||
(long)ntohl(p->type));
|
||||
break;
|
||||
case CISCO_ADDR_REPLY:
|
||||
/* Reply on address request, ignore */
|
||||
|
|
|
|||
Loading…
Reference in a new issue