Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/makefs/ffs gut const for now.



details:   https://anonhg.NetBSD.org/src/rev/a18f97d71a30
branches:  trunk
changeset: 821506:a18f97d71a30
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Feb 08 16:00:30 2017 +0000

description:
gut const for now.

diffstat:

 usr.sbin/makefs/ffs/mkfs.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 35a5062d4721 -r a18f97d71a30 usr.sbin/makefs/ffs/mkfs.c
--- a/usr.sbin/makefs/ffs/mkfs.c        Wed Feb 08 14:53:50 2017 +0000
+++ b/usr.sbin/makefs/ffs/mkfs.c        Wed Feb 08 16:00:30 2017 +0000
@@ -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     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 */



Home | Main Index | Thread Index | Old Index