diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2023-02-03 23:04:35 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2023-02-03 23:04:35 +0000 |
| commit | 5d64eb7fe29a2e401d29e53809ec008979badb2f (patch) | |
| tree | 5fbf505f7d214713a3ee57e90a47b3244bf6b157 /sys | |
| parent | 52ad4c40a34822c055e55737d4eadec5b2534ba3 (diff) | |
Use proper C99 int types.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/next68k/dev/mb8795var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/next68k/dev/mb8795var.h b/sys/arch/next68k/dev/mb8795var.h index e3b778fe07e..6675f04e31c 100644 --- a/sys/arch/next68k/dev/mb8795var.h +++ b/sys/arch/next68k/dev/mb8795var.h @@ -1,4 +1,4 @@ -/* $NetBSD: mb8795var.h,v 1.15 2015/04/13 21:18:42 riastradh Exp $ */ +/* $NetBSD: mb8795var.h,v 1.16 2023/02/03 23:04:35 tsutsui Exp $ */ /* * Copyright (c) 1998 Darrin B. Jewell * All rights reserved. @@ -62,7 +62,7 @@ struct mb8795_softc { bus_space_handle_t sc_bmap_bsh; /* bus space handle */ - u_int8_t sc_enaddr[6]; + uint8_t sc_enaddr[6]; struct ifaltq sc_tx_snd; |
