cast dev_t to int in printf to fix warning.
This commit is contained in:
parent
997313be99
commit
f4481658ec
@ -389,7 +389,7 @@ svr4_delete_socket(p, fp)
|
||||
if (e->p == p && e->cookie == cookie) {
|
||||
TAILQ_REMOVE(&svr4_head, e, entries);
|
||||
DPRINTF(("svr4_delete_socket: %s [%p,%d,%d]\n",
|
||||
e->sock.sun_path, p, e->dev, e->ino));
|
||||
e->sock.sun_path, p, (int)e->dev, e->ino));
|
||||
free(e, M_TEMP);
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user