mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix long format mismatch with int arg
This commit is contained in:
parent
e9c044bd9e
commit
54109b3e31
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ dump_file(const char *fname)
|
|||
printf("%s: a_midmag = 0x%lx\n", fname, ex->a_midmag);
|
||||
printf(" magic = 0x%lx = 0%lo, netmagic = 0x%lx = 0%lo\n",
|
||||
N_GETMAGIC(*ex), N_GETMAGIC(*ex),
|
||||
N_GETMAGIC_NET(*ex), N_GETMAGIC_NET(*ex));
|
||||
(long)N_GETMAGIC_NET(*ex), (long)N_GETMAGIC_NET(*ex));
|
||||
|
||||
if (N_BADMAG(*ex)) {
|
||||
warnx("%s: bad magic number", fname);
|
||||
|
|
|
|||
Loading…
Reference in a new issue