From 87468857f685863cd763ae361c2cb3be0ee53a68 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 13 Apr 2007 23:22:00 +0000 Subject: style fixes --- include/platform.h | 8 ++++---- include/shadow_.h | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) (limited to 'include') diff --git a/include/platform.h b/include/platform.h index 4ed5fe6..0adbed4 100644 --- a/include/platform.h +++ b/include/platform.h @@ -173,13 +173,13 @@ __extension__ typedef unsigned long long __u64; #else /* Largest integral types. */ #if __BIG_ENDIAN__ -typedef long int intmax_t; -typedef unsigned long int uintmax_t; +typedef long intmax_t; +typedef unsigned long uintmax_t; #else __extension__ -typedef long long int intmax_t; +typedef long long intmax_t; __extension__ -typedef unsigned long long int uintmax_t; +typedef unsigned long long uintmax_t; #endif #endif diff --git a/include/shadow_.h b/include/shadow_.h index fb2153c..92bcde8 100644 --- a/include/shadow_.h +++ b/include/shadow_.h @@ -37,13 +37,13 @@ struct spwd { char *sp_namp; /* Login name */ char *sp_pwdp; /* Encrypted password */ - long int sp_lstchg; /* Date of last change */ - long int sp_min; /* Minimum number of days between changes */ - long int sp_max; /* Maximum number of days between changes */ - long int sp_warn; /* Number of days to warn user to change the password */ - long int sp_inact; /* Number of days the account may be inactive */ - long int sp_expire; /* Number of days since 1970-01-01 until account expires */ - unsigned long int sp_flag; /* Reserved */ + long sp_lstchg; /* Date of last change */ + long sp_min; /* Minimum number of days between changes */ + long sp_max; /* Maximum number of days between changes */ + long sp_warn; /* Number of days to warn user to change the password */ + long sp_inact; /* Number of days the account may be inactive */ + long sp_expire; /* Number of days since 1970-01-01 until account expires */ + unsigned long sp_flag; /* Reserved */ }; -- cgit v1.1