Module Name:    src
Committed By:   dholland
Date:           Sun Aug 23 09:29:46 UTC 2015

Modified Files:
        src/sbin/fsck_lfs: pass0.c

Log Message:
Fix reversed arguments to a print. nice and confusing...


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sbin/fsck_lfs/pass0.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sbin/fsck_lfs/pass0.c
diff -u src/sbin/fsck_lfs/pass0.c:1.39 src/sbin/fsck_lfs/pass0.c:1.40
--- src/sbin/fsck_lfs/pass0.c:1.39	Wed Aug 12 18:25:52 2015
+++ src/sbin/fsck_lfs/pass0.c	Sun Aug 23 09:29:46 2015
@@ -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 @@ pass0(void)
 	}
 	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();

Reply via email to