]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
time: Fix spelling mistake in comment
authorMukesh Ojha <mojha@codeaurora.org>
Tue, 15 Oct 2019 07:33:39 +0000 (13:03 +0530)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 12 Nov 2019 10:30:46 +0000 (11:30 +0100)
witin => within

Signed-off-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1571124819-9639-1-git-send-email-mojha@codeaurora.org
kernel/time/time.c

index 45a358953f09a7703efeb3471ce15bba2a63f883..ea6e7e47cc37d248a0551af5b32030230aa7cfa5 100644 (file)
@@ -179,7 +179,7 @@ int do_sys_settimeofday64(const struct timespec64 *tv, const struct timezone *tz
                return error;
 
        if (tz) {
-               /* Verify we're witin the +-15 hrs range */
+               /* Verify we're within the +-15 hrs range */
                if (tz->tz_minuteswest > 15*60 || tz->tz_minuteswest < -15*60)
                        return -EINVAL;