From b35078aef12640df0ca99a3ad8c57ff56d43154b Mon Sep 17 00:00:00 2001 From: Colin Date: Fri, 7 Mar 2014 16:18:29 +0000 Subject: [PATCH] Fixed typo in comment Changed "then" to "than" No functional change --- include/linux/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/time.h b/include/linux/time.h index d5d229b2e5af18..f1bf27113c0661 100644 --- a/include/linux/time.h +++ b/include/linux/time.h @@ -99,7 +99,7 @@ static inline bool timespec_valid(const struct timespec *ts) /* Dates before 1970 are bogus */ if (ts->tv_sec < 0) return false; - /* Can't have more nanoseconds then a second */ + /* Can't have more nanoseconds than a second */ if ((unsigned long)ts->tv_nsec >= NSEC_PER_SEC) return false; return true;