Source-Changes-HG archive

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

[src/trunk]: src/sys/fs/msdosfs catch up with DPRINTF change



details:   https://anonhg.NetBSD.org/src/rev/75bed8bb0b00
branches:  trunk
changeset: 335766:75bed8bb0b00
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Jan 23 03:33:58 2015 +0000

description:
catch up with DPRINTF change

diffstat:

 sys/fs/msdosfs/msdosfs_vfsops.c |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r bfde0eecc8f8 -r 75bed8bb0b00 sys/fs/msdosfs/msdosfs_vfsops.c
--- a/sys/fs/msdosfs/msdosfs_vfsops.c   Fri Jan 23 03:31:58 2015 +0000
+++ b/sys/fs/msdosfs/msdosfs_vfsops.c   Fri Jan 23 03:33:58 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msdosfs_vfsops.c,v 1.116 2015/01/23 02:39:48 christos Exp $    */
+/*     $NetBSD: msdosfs_vfsops.c,v 1.117 2015/01/23 03:33:58 christos Exp $    */
 
 /*-
  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.116 2015/01/23 02:39:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.117 2015/01/23 03:33:58 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
@@ -511,7 +511,7 @@
         * boot signature.  If not a dos boot sector then error out.
         */
        if (secsize < sizeof(*b50)) {
-               DPRINTF(("50 bootsec %u\n", secsize));
+               DPRINTF("50 bootsec %u\n", secsize);
                error = EINVAL;
                goto error_exit;
        }
@@ -557,7 +557,7 @@
                pmp->pm_HugeSectors = getulong(b50->bpbHugeSectors);
        } else {
                if (secsize < sizeof(*b33)) {
-                       DPRINTF(("33 bootsec %u\n", secsize));
+                       DPRINTF("33 bootsec %u\n", secsize);
                        error = EINVAL;
                        goto error_exit;
                }
@@ -590,7 +590,7 @@
 
        if (pmp->pm_RootDirEnts == 0) {
                if (secsize < sizeof(*b710)) {
-                       DPRINTF(("710 bootsec %u\n", secsize));
+                       DPRINTF("710 bootsec %u\n", secsize);
                        error = EINVAL;
                        goto error_exit;
                }
@@ -666,7 +666,7 @@
        pmp->pm_fatblk = pmp->pm_ResSectors;
        if (FAT32(pmp)) {
                if (secsize < sizeof(*b710)) {
-                       DPRINTF(("710 bootsec %u\n", secsize));
+                       DPRINTF("710 bootsec %u\n", secsize);
                        error = EINVAL;
                        goto error_exit;
                }



Home | Main Index | Thread Index | Old Index