Module Name: src Committed By: andvar Date: Wed Sep 25 20:10:36 UTC 2024
Modified Files: src/sys/fs/v7fs: v7fs_inode.c Log Message: s/corupt/corrupt/ in debug message. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/fs/v7fs/v7fs_inode.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/fs/v7fs/v7fs_inode.c diff -u src/sys/fs/v7fs/v7fs_inode.c:1.2 src/sys/fs/v7fs/v7fs_inode.c:1.3 --- src/sys/fs/v7fs/v7fs_inode.c:1.2 Mon Jul 18 21:51:49 2011 +++ src/sys/fs/v7fs/v7fs_inode.c Wed Sep 25 20:10:36 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: v7fs_inode.c,v 1.2 2011/07/18 21:51:49 apb Exp $ */ +/* $NetBSD: v7fs_inode.c,v 1.3 2024/09/25 20:10:36 andvar Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -34,7 +34,7 @@ #endif #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: v7fs_inode.c,v 1.2 2011/07/18 21:51:49 apb Exp $"); +__KERNEL_RCSID(0, "$NetBSD: v7fs_inode.c,v 1.3 2024/09/25 20:10:36 andvar Exp $"); #if defined _KERNEL_OPT #include "opt_v7fs.h" #endif @@ -124,7 +124,7 @@ v7fs_inode_allocate(struct v7fs_self *fs if ((error = v7fs_inode_number_sanity(sb, inode_number))) { DPRINTF("new inode#%d %d %d\n", inode_number, sb->nfreeinode, sb->total_freeinode); - DPRINTF("free inode list corupt\n"); + DPRINTF("free inode list corrupt\n"); goto errexit; } *ino = inode_number;