hust testsuite: fix a false positive
[oweals/busybox.git] / console-tools / setlogcons.c
index aa8e0806fb5c07a47c9491911922d94ed8dbbaf7..2a11da32966dae878ef24b5ea98462d56be8c4da 100644 (file)
@@ -6,20 +6,26 @@
  *
  * Based on setlogcons (kbd-1.12) by Andries E. Brouwer
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
+//usage:#define setlogcons_trivial_usage
+//usage:       "[N]"
+//usage:#define setlogcons_full_usage "\n\n"
+//usage:       "Redirect the kernel output to console N. Default:0 (current console)"
+
 #include "libbb.h"
 
 int setlogcons_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int setlogcons_main(int argc ATTRIBUTE_UNUSED, char **argv)
+int setlogcons_main(int argc UNUSED_PARAM, char **argv)
 {
        struct {
                char fn;
                char subarg;
-       } arg = { 11, /* redirect kernel messages */
-                         0   /* to specified console (current as default) */
-                       };
+       } arg = {
+               11, /* redirect kernel messages */
+               0   /* to specified console (current as default) */
+       };
 
        if (argv[1])
                arg.subarg = xatou_range(argv[1], 0, 63);