From 09f661dabf71a41d8a761248ef1478cc23ea53dd Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Wed, 26 Apr 2017 07:41:05 +0200 Subject: [PATCH] statx.2: 'tv_nsec' is nanoseconds *since* 'tv_sec' Reported-by: Dmitry V. Levin Signed-off-by: Michael Kerrisk --- man2/statx.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/statx.2 b/man2/statx.2 index 54fb5bca1..48644f689 100644 --- a/man2/statx.2 +++ b/man2/statx.2 @@ -93,7 +93,7 @@ The file timestamps are structures of the following type: .nf struct statx_timestamp { __s64 tv_sec; /* Seconds since the Epoch (UNIX time) */ - __s32 tv_nsec; /* Nanoseconds before or since tv_sec */ + __s32 tv_nsec; /* Nanoseconds since tv_sec */ }; .fi .in