From 6413f86a09de3c0cd312d33cd093e10e4cb171ae Mon Sep 17 00:00:00 2001 From: tsutsui Date: Sat, 26 Nov 2005 13:57:27 +0000 Subject: [PATCH] Fix more FALLTHOUGH -> FALLTHROUGH typo. --- usr.bin/at/stime.c | 6 +++--- usr.bin/touch/touch.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/usr.bin/at/stime.c b/usr.bin/at/stime.c index 76b9586634da..8561f6487414 100644 --- a/usr.bin/at/stime.c +++ b/usr.bin/at/stime.c @@ -1,4 +1,4 @@ -/* $NetBSD: stime.c,v 1.4 2005/02/17 16:56:10 xtraeme Exp $ */ +/* $NetBSD: stime.c,v 1.5 2005/11/26 13:57:27 tsutsui Exp $ */ /* * Copyright (c) 1993 @@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1993\n\ #if 0 static char sccsid[] = "from: @(#)touch.c 8.2 (Berkeley) 4/28/95"; #endif -__RCSID("$NetBSD: stime.c,v 1.4 2005/02/17 16:56:10 xtraeme Exp $"); +__RCSID("$NetBSD: stime.c,v 1.5 2005/11/26 13:57:27 tsutsui Exp $"); #endif /* not lint */ @@ -80,7 +80,7 @@ stime(char *arg) case 12: /* CCYYMMDDhhmm */ t->tm_year = ATOI2(arg) * 100 - TM_YEAR_BASE; yearset = 1; - /* FALLTHOUGH */ + /* FALLTHROUGH */ case 10: /* YYMMDDhhmm */ if (yearset) { t->tm_year += ATOI2(arg); diff --git a/usr.bin/touch/touch.c b/usr.bin/touch/touch.c index 3f0ead50cb78..330c85420d6e 100644 --- a/usr.bin/touch/touch.c +++ b/usr.bin/touch/touch.c @@ -1,4 +1,4 @@ -/* $NetBSD: touch.c,v 1.24 2003/08/07 11:16:45 agc Exp $ */ +/* $NetBSD: touch.c,v 1.25 2005/11/26 13:57:27 tsutsui Exp $ */ /* * Copyright (c) 1993 @@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1993\n\ #if 0 static char sccsid[] = "@(#)touch.c 8.2 (Berkeley) 4/28/95"; #endif -__RCSID("$NetBSD: touch.c,v 1.24 2003/08/07 11:16:45 agc Exp $"); +__RCSID("$NetBSD: touch.c,v 1.25 2005/11/26 13:57:27 tsutsui Exp $"); #endif /* not lint */ #include @@ -227,7 +227,7 @@ stime_arg1(arg, tvp) case 12: /* CCYYMMDDhhmm */ t->tm_year = ATOI2(arg) * 100 - TM_YEAR_BASE; yearset = 1; - /* FALLTHOUGH */ + /* FALLTHROUGH */ case 10: /* YYMMDDhhmm */ if (yearset) { t->tm_year += ATOI2(arg);