mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix -Wformat warnings by using the correct format qualifiers
MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
35028a6e30
commit
b20e9c5f4c
1 changed files with 1 additions and 1 deletions
|
|
@ -186,7 +186,7 @@ FILE *d;
|
|||
fprintf(d, ">");
|
||||
break;
|
||||
default:
|
||||
fprintf(d, "!%d(%d)!", OP(*s), opnd);
|
||||
fprintf(d, "!%ld(%ld)!", OP(*s), (long)opnd);
|
||||
break;
|
||||
}
|
||||
if (!done)
|
||||
|
|
|
|||
Loading…
Reference in a new issue