diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-03 23:45:59 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-05-03 23:45:59 +0000 |
commit | 84c77afa5b108e9aaa9f177ca9c67ed438b8da34 (patch) | |
tree | b54d8f6cc7134aab2faf8d146252db79e3a55799 /sys/arch | |
parent | 00643782085b380c153577e17447f93d2dfd479b (diff) |
make lifdir.dir_type unsigned such as it is
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/include/disklabel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/disklabel.h b/sys/arch/hppa/include/disklabel.h index add524462c2..a57b691e544 100644 --- a/sys/arch/hppa/include/disklabel.h +++ b/sys/arch/hppa/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.3 1999/05/03 22:45:04 mickey Exp $ */ +/* $OpenBSD: disklabel.h,v 1.4 1999/05/03 23:45:58 mickey Exp $ */ /* $NetBSD: disklabel.h,v 1.1 1995/02/13 23:07:34 cgd Exp $ */ /* @@ -283,7 +283,7 @@ struct lifvol { struct lifdir { char dir_name[10]; - short dir_type; + u_short dir_type; u_int dir_addr; u_int dir_length; char dir_toc[6]; |