Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/installboot/arch For portability, use 'unsigned int...



details:   https://anonhg.NetBSD.org/src/rev/fa6d9d336feb
branches:  trunk
changeset: 581980:fa6d9d336feb
user:      dyoung <dyoung%NetBSD.org@localhost>
date:      Sun Jun 12 20:21:20 2005 +0000

description:
For portability, use 'unsigned int' instead of 'uint'.

diffstat:

 usr.sbin/installboot/arch/hp300.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b5e1815b0f00 -r fa6d9d336feb usr.sbin/installboot/arch/hp300.c
--- a/usr.sbin/installboot/arch/hp300.c Sun Jun 12 20:04:22 2005 +0000
+++ b/usr.sbin/installboot/arch/hp300.c Sun Jun 12 20:21:20 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: hp300.c,v 1.4 2003/11/13 08:19:43 dsl Exp $ */
+/* $NetBSD: hp300.c,v 1.5 2005/06/12 20:21:20 dyoung Exp $ */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
 
 #include <sys/cdefs.h>
 #if !defined(__lint)
-__RCSID("$NetBSD: hp300.c,v 1.4 2003/11/13 08:19:43 dsl Exp $");
+__RCSID("$NetBSD: hp300.c,v 1.5 2005/06/12 20:21:20 dyoung Exp $");
 #endif /* !__lint */
 
 /* We need the target disklabel.h, not the hosts one..... */
@@ -80,7 +80,7 @@
        struct hp300_lifdir *lifdir;
        int             offset;
        int             i;
-       uint            secsize;
+       unsigned int    secsize;
        uint64_t        boot_size, boot_offset;
        char            label_buf[DEV_BSIZE];
        struct disklabel *label = (void *)label_buf;



Home | Main Index | Thread Index | Old Index