Format string cleanup from sommerfeld.

This commit is contained in:
is 2000-10-08 09:53:43 +00:00
parent 162b0b6410
commit 170b9a3198

View File

@ -1,4 +1,4 @@
/* $NetBSD: dig.c,v 1.1.1.1 1999/11/20 18:53:58 veego Exp $ */
/* $NetBSD: dig.c,v 1.2 2000/10/08 09:53:43 is Exp $ */
#ifndef lint
static const char rcsid[] = "Id: dig.c,v 8.36 1999/11/05 05:05:14 vixie Exp";
@ -1506,7 +1506,7 @@ printZone(ns_type xfr, const char *zone, const struct sockaddr_in *sin,
return (ERROR);
}
printf(";; pid %lu: exit %d, signal %d, core %c\n",
pid, WEXITSTATUS(status),
(u_long)pid, WEXITSTATUS(status),
WIFSIGNALED(status) ? WTERMSIG(status) : 0,
WCOREDUMP(status) ? 't' : 'f');
}