diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2005-11-26 13:57:27 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2005-11-26 13:57:27 +0000 |
| commit | 6413f86a09de3c0cd312d33cd093e10e4cb171ae (patch) | |
| tree | ade4dc66f1d67f7ce8ad4199deff1a48722429a4 /usr.bin/touch | |
| parent | d0c28ccd6db1de02626bbd227796da0cb6775e4a (diff) | |
Fix more FALLTHOUGH -> FALLTHROUGH typo.
Diffstat (limited to 'usr.bin/touch')
| -rw-r--r-- | usr.bin/touch/touch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/touch/touch.c b/usr.bin/touch/touch.c index 3f0ead50cb7..330c85420d6 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 <sys/types.h> @@ -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); |
