mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add missing err() format string.
This commit is contained in:
parent
9de4b9861e
commit
1984dd520b
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ main(int argc, char *argv[])
|
|||
atd.ad_out_data = (caddr_t) eep;
|
||||
atd.ad_out_size = sizeof(eep);
|
||||
if (ioctl(s, SIOCGATHDIAG, &atd) < 0)
|
||||
err(1, atd.ad_name);
|
||||
err(1, "ioctl: %s", atd.ad_name);
|
||||
|
||||
/* Dump file? Then just write to it */
|
||||
if (dumpname != NULL) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue