Module Name:    src
Committed By:   christos
Date:           Wed Feb  8 16:00:30 UTC 2017

Modified Files:
        src/usr.sbin/makefs/ffs: mkfs.c

Log Message:
gut const for now.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/usr.sbin/makefs/ffs/mkfs.c

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

Modified files:

Index: src/usr.sbin/makefs/ffs/mkfs.c
diff -u src/usr.sbin/makefs/ffs/mkfs.c:1.35 src/usr.sbin/makefs/ffs/mkfs.c:1.36
--- src/usr.sbin/makefs/ffs/mkfs.c:1.35	Tue Feb  7 23:08:53 2017
+++ src/usr.sbin/makefs/ffs/mkfs.c	Wed Feb  8 11:00:30 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: mkfs.c,v 1.35 2017/02/08 04:08:53 christos Exp $	*/
+/*	$NetBSD: mkfs.c,v 1.36 2017/02/08 16:00:30 christos Exp $	*/
 
 /*
  * Copyright (c) 2002 Networks Associates Technology, Inc.
@@ -48,7 +48,7 @@
 static char sccsid[] = "@(#)mkfs.c	8.11 (Berkeley) 5/3/95";
 #else
 #ifdef __RCSID
-__RCSID("$NetBSD: mkfs.c,v 1.35 2017/02/08 04:08:53 christos Exp $");
+__RCSID("$NetBSD: mkfs.c,v 1.36 2017/02/08 16:00:30 christos Exp $");
 #endif
 #endif
 #endif /* not lint */
@@ -126,7 +126,7 @@ static int     avgfilesize;	   /* expect
 static int     avgfpdir;	   /* expected number of files per directory */
 
 static void
-ffs_sb_copy(struct fs *o, const struct fs *i, size_t l, fsinfo_t *fsopts)
+ffs_sb_copy(struct fs *o, struct fs *i, size_t l, const fsinfo_t *fsopts)
 {
 	memcpy(o, i, l);
 	/* Zero out pointers */

Reply via email to