Source-Changes-HG archive

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

[src/trunk]: src/sbin/veriexecctl Use PRIu64 to print ino_t (maybe there shou...



details:   https://anonhg.NetBSD.org/src/rev/e14cd80fe8a6
branches:  trunk
changeset: 586306:e14cd80fe8a6
user:      dsl <dsl%NetBSD.org@localhost>
date:      Tue Dec 13 10:56:16 2005 +0000

description:
Use PRIu64 to print ino_t (maybe there should be a PRIino_t somewhere....)

diffstat:

 sbin/veriexecctl/veriexecctl.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 709c64e43c59 -r e14cd80fe8a6 sbin/veriexecctl/veriexecctl.c
--- a/sbin/veriexecctl/veriexecctl.c    Tue Dec 13 10:41:25 2005 +0000
+++ b/sbin/veriexecctl/veriexecctl.c    Tue Dec 13 10:56:16 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: veriexecctl.c,v 1.19 2005/12/12 21:47:58 elad Exp $    */
+/*     $NetBSD: veriexecctl.c,v 1.20 2005/12/13 10:56:16 dsl Exp $     */
 
 /*-
  * Copyright 2005 Elad Efrat <elad%bsd.org.il@localhost>
@@ -254,7 +254,7 @@
        int i;
 
        printf("Filename: %s\n", file);
-       printf("Device: %d, inode: %lu\n", qp->dev, qp->ino);
+       printf("Device: %d, inode: %" PRIu64 "\n", qp->dev, qp->ino);
        printf("Entry flags: ");
        print_flags(qp->type);
        printf("Entry status: %s\n", STATUS_STRING(qp->status));



Home | Main Index | Thread Index | Old Index