diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2008-06-29 04:56:36 +0000 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2008-06-29 04:56:36 +0000 |
commit | 93574a80803e10c3b38b308c3727eff4990188a6 (patch) | |
tree | b29183c624f8a98c976582ab6e6b0870b72a30b1 /man5/utmp.5 | |
parent | ff2548cada071b7463162df19b796678771512fe (diff) |
wfix + ffix
Diffstat (limited to 'man5/utmp.5')
-rw-r--r-- | man5/utmp.5 | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/man5/utmp.5 b/man5/utmp.5 index 883e60cf..dce318cd 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 |