Module Name:    src
Committed By:   mrg
Date:           Mon Apr  6 06:41:34 UTC 2020

Modified Files:
        src/sbin/fsck_ffs: main.c

Log Message:
dion't define endian as well as try to declare it as a variable.


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sbin/fsck_ffs/main.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_ffs/main.c
diff -u src/sbin/fsck_ffs/main.c:1.87 src/sbin/fsck_ffs/main.c:1.88
--- src/sbin/fsck_ffs/main.c:1.87	Sun Apr  5 15:25:40 2020
+++ src/sbin/fsck_ffs/main.c	Mon Apr  6 06:41:34 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: main.c,v 1.87 2020/04/05 15:25:40 joerg Exp $	*/
+/*	$NetBSD: main.c,v 1.88 2020/04/06 06:41:34 mrg Exp $	*/
 
 /*
  * Copyright (c) 1980, 1986, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 19
 #if 0
 static char sccsid[] = "@(#)main.c	8.6 (Berkeley) 5/14/95";
 #else
-__RCSID("$NetBSD: main.c,v 1.87 2020/04/05 15:25:40 joerg Exp $");
+__RCSID("$NetBSD: main.c,v 1.88 2020/04/06 06:41:34 mrg Exp $");
 #endif
 #endif /* not lint */
 
@@ -115,7 +115,9 @@ int	fsreadfd;
 int	fswritefd;
 int	rerun;
 char	resolved;
+#ifndef NO_FFS_EI
 int	endian;
+#endif
 int	doswap;
 int	needswap;
 int	do_blkswap;

Reply via email to