Source-Changes-HG archive

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

[src/trunk]: src/sbin/fsck_lfs Fix reversed arguments to a print. nice and co...



details:   https://anonhg.NetBSD.org/src/rev/9d5259813ea3
branches:  trunk
changeset: 340106:9d5259813ea3
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sun Aug 23 09:29:46 2015 +0000

description:
Fix reversed arguments to a print. nice and confusing...

diffstat:

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

diffs (18 lines):

diff -r d73a78e303fe -r 9d5259813ea3 sbin/fsck_lfs/pass0.c
--- a/sbin/fsck_lfs/pass0.c     Sun Aug 23 08:57:24 2015 +0000
+++ b/sbin/fsck_lfs/pass0.c     Sun Aug 23 09:29:46 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pass0.c,v 1.39 2015/08/12 18:25:52 dholland Exp $   */
+/* $NetBSD: pass0.c,v 1.40 2015/08/23 09:29:46 dholland Exp $   */
 
 /*-
  * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
@@ -201,7 +201,7 @@
        }
        if (freehd != lfs_sb_getfreehd(fs)) {
                pwarn("FREE LIST HEAD IN SUPERBLOCK SHOULD BE %u (WAS %ju)\n",
-                       lfs_sb_getfreehd(fs), (uintmax_t)freehd);
+                       (uintmax_t)freehd, lfs_sb_getfreehd(fs));
                if (preen || reply("FIX")) {
                        lfs_sb_setfreehd(fs, freehd);
                        sbdirty();



Home | Main Index | Thread Index | Old Index