diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-03-26 11:12:15 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-03-26 11:12:53 +0100 |
commit | f370a66b263c4a887d37076a1b598ccbdc4766ff (patch) | |
tree | 02d68315a9240ecbaba3ff0fd540294cba43f847 | |
parent | 16df5e8e6dccbcec52371fc569a3237e5854ba5b (diff) | |
download | busybox-w32-f370a66b263c4a887d37076a1b598ccbdc4766ff.tar.gz busybox-w32-f370a66b263c4a887d37076a1b598ccbdc4766ff.tar.bz2 busybox-w32-f370a66b263c4a887d37076a1b598ccbdc4766ff.zip |
ts: fix incorrect (copy-pasted) copyright attribution
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | miscutils/ts.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/miscutils/ts.c b/miscutils/ts.c index 4a02341cc..c389ab89a 100644 --- a/miscutils/ts.c +++ b/miscutils/ts.c | |||
@@ -1,8 +1,7 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * Copyright (C) 2006 Michael Opdenacker <michael@free-electrons.com> | 3 | * Copyright (C) 2019 Denys Vlasenko <vda.linux@googlemail.com> |
4 | * | 4 | * Licensed under GPLv2, see file LICENSE in this source tree. |
5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | ||
6 | */ | 5 | */ |
7 | //config:config TS | 6 | //config:config TS |
8 | //config: bool "ts (450 bytes)" | 7 | //config: bool "ts (450 bytes)" |
@@ -21,7 +20,7 @@ | |||
21 | # include <sys/syscall.h> | 20 | # include <sys/syscall.h> |
22 | 21 | ||
23 | int ts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 22 | int ts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
24 | int ts_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | 23 | int ts_main(int argc UNUSED_PARAM, char **argv) |
25 | { | 24 | { |
26 | struct timespec base; | 25 | struct timespec base; |
27 | unsigned opt; | 26 | unsigned opt; |