Source-Changes-HG archive

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

[src/trunk]: src/sys/ufs/ext2fs Fix unsigned



details:   https://anonhg.NetBSD.org/src/rev/607ca96a6db5
branches:  trunk
changeset: 820680:607ca96a6db5
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Jan 13 18:04:36 2017 +0000

description:
Fix unsigned

diffstat:

 sys/ufs/ext2fs/ext2fs_dinode.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 29d48642a2a2 -r 607ca96a6db5 sys/ufs/ext2fs/ext2fs_dinode.h
--- a/sys/ufs/ext2fs/ext2fs_dinode.h    Fri Jan 13 15:17:00 2017 +0000
+++ b/sys/ufs/ext2fs/ext2fs_dinode.h    Fri Jan 13 18:04:36 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ext2fs_dinode.h,v 1.36 2016/08/12 19:04:03 jdolecek Exp $      */
+/*     $NetBSD: ext2fs_dinode.h,v 1.37 2017/01/13 18:04:36 christos Exp $      */
 
 /*
  * Copyright (c) 1982, 1989, 1993
@@ -205,7 +205,7 @@
 #define EXT2_PROJINHERIT       0x20000000 /* Children inherit project ID */
 
 /* Size of on-disk inode. */
-#define EXT2_REV0_DINODE_SIZE  128
+#define EXT2_REV0_DINODE_SIZE  128U
 #define EXT2_DINODE_SIZE(fs)   ((fs)->e2fs.e2fs_rev > E2FS_REV0 ?      \
                                    (fs)->e2fs.e2fs_inode_size :        \
                                    EXT2_REV0_DINODE_SIZE)



Home | Main Index | Thread Index | Old Index