Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/dist/bind/bin/dig Pull up revision 1.2 (requested by is):



details:   https://anonhg.NetBSD.org/src/rev/fc073d41443d
branches:  netbsd-1-4
changeset: 470956:fc073d41443d
user:      he <he%NetBSD.org@localhost>
date:      Sun Oct 08 16:16:57 2000 +0000

description:
Pull up revision 1.2 (requested by is):
  Format string cleanup.

diffstat:

 dist/bind/bin/dig/dig.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r b696e3513a1c -r fc073d41443d dist/bind/bin/dig/dig.c
--- a/dist/bind/bin/dig/dig.c   Sun Oct 08 16:16:10 2000 +0000
+++ b/dist/bind/bin/dig/dig.c   Sun Oct 08 16:16:57 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dig.c,v 1.1.1.1.2.2 1999/12/04 16:51:56 he Exp $       */
+/*     $NetBSD: dig.c,v 1.1.1.1.2.3 2000/10/08 16:16:57 he 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 @@
                        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');
        }



Home | Main Index | Thread Index | Old Index