diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-17 18:26:52 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-01-17 18:26:52 +0000 |
commit | cc65376b3707d547c72ae6bc9fc32229d7a00e05 (patch) | |
tree | 80102d1284167b14eaf7a9071af98aafb36dfbbf /sbin/pdisk/convert.c | |
parent | dc1b65b19d9d332df3e9d88e04c34160452a6758 (diff) |
The great de-typedef'ification continues. u16 -> uint16_t.
Diffstat (limited to 'sbin/pdisk/convert.c')
-rw-r--r-- | sbin/pdisk/convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pdisk/convert.c b/sbin/pdisk/convert.c index 3f9f19b7c2e..4881c97399d 100644 --- a/sbin/pdisk/convert.c +++ b/sbin/pdisk/convert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: convert.c,v 1.13 2016/01/17 18:23:30 krw Exp $ */ +/* $OpenBSD: convert.c,v 1.14 2016/01/17 18:26:51 krw Exp $ */ // // convert.c - Little-endian conversion @@ -96,7 +96,7 @@ convert_block0(struct block0 *data, int to_cpu_form) { #if BYTE_ORDER == LITTLE_ENDIAN struct ddmap *m; - u16 count; + uint16_t count; int i; // Since this data is optional we do not want to convert willy-nilly. |