From c19103b52f79a56901b9d4404d8d9655c18d7127 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Fri, 27 Jan 2012 00:14:12 +0300 Subject: u_int32_t -> uint32_t --- include/attributes.h | 4 ++-- man/man3/attr_list.3 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/attributes.h b/include/attributes.h index ba02025..ff50b56 100644 --- a/include/attributes.h +++ b/include/attributes.h @@ -69,7 +69,7 @@ typedef struct attrlist { * al_offset[i] entry points to. */ typedef struct attrlist_ent { /* data from attr_list() */ - u_int32_t a_valuelen; /* number bytes in value of attr */ + uint32_t a_valuelen; /* number bytes in value of attr */ char a_name[1]; /* attr name (NULL terminated) */ } attrlist_ent_t; @@ -90,7 +90,7 @@ typedef struct attrlist_ent { /* data from attr_list() */ * operation on a cursor is to bzero() it. */ typedef struct attrlist_cursor { - u_int32_t opaque[4]; /* an opaque cookie */ + uint32_t opaque[4]; /* an opaque cookie */ } attrlist_cursor_t; /* diff --git a/man/man3/attr_list.3 b/man/man3/attr_list.3 index 978cfff..8e6fe61 100644 --- a/man/man3/attr_list.3 +++ b/man/man3/attr_list.3 @@ -113,7 +113,7 @@ include the following members: .nf .ft 4 .ta 9n 22n -u_int32_t a_valuelen; /\(** number bytes in value of attr \(**/ +uint32_t a_valuelen; /\(** number bytes in value of attr \(**/ char a_name[]; /\(** attr name (NULL terminated) \(**/ .ft 1 .fi -- cgit v1.2.3