[git commit] ts: fix incorrect (copy-pasted) copyright attribution

Denys Vlasenko vda.linux at googlemail.com
Tue Mar 26 10:12:53 UTC 2019


commit: https://git.busybox.net/busybox/commit/?id=f370a66b263c4a887d37076a1b598ccbdc4766ff
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 miscutils/ts.c | 7 +++----
 1 file 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 @@
 /* vi: set sw=4 ts=4: */
 /*
- * Copyright (C) 2006  Michael Opdenacker <michael at free-electrons.com>
- *
- * Licensed under GPLv2 or later, see file LICENSE in this source tree.
+ * Copyright (C) 2019 Denys Vlasenko <vda.linux at googlemail.com>
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 //config:config TS
 //config:	bool "ts (450 bytes)"
@@ -21,7 +20,7 @@
 # include <sys/syscall.h>
 
 int ts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int ts_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
+int ts_main(int argc UNUSED_PARAM, char **argv)
 {
 	struct timespec base;
 	unsigned opt;


More information about the busybox-cvs mailing list