diff --git a/man5/utmp.5 b/man5/utmp.5 index 883e60cf1..dce318cdd 100644 --- a/man5/utmp.5 +++ b/man5/utmp.5 @@ -64,8 +64,8 @@ around; details depend on the version of libc): #define DEAD_PROCESS 8 #define ACCOUNTING 9 -#define UT_LINESIZE 32 -#define UT_NAMESIZE 32 +#define UT_LINESIZE 32 +#define UT_NAMESIZE 32 #define UT_HOSTSIZE 256 struct exit_status { @@ -90,13 +90,14 @@ struct utmp { compiled 32- and 64-bit. This allows data files and shared memory to be shared between 32- and 64-bit applications. */ #if __WORDSIZE == 64 && defined __WORDSIZE_COMPAT32 - int32_t ut_session; /* Session ID, used for windowing */ + int32_t ut_session; /* Session ID, used for + windowing */ struct { int32_t tv_sec; /* Seconds */ int32_t tv_usec; /* Microseconds */ } ut_tv; /* Time entry was made */ #else - long ut_session; /* Session ID, used for windowing */ + long ut_session; /* Session ID */ struct timeval ut_tv; /* Time entry was made */ #endif