aboutsummaryrefslogtreecommitdiff
path: root/util-linux/lsusb.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-11-12 08:27:51 +0000
committerRon Yorston <rmy@pobox.com>2020-11-12 08:27:51 +0000
commitead8b92e3d66ab45235e137f85fb3a529dcc64ef (patch)
treeaf268270382dad969218063d4a8120fc91a9e631 /util-linux/lsusb.c
parent567728c22dddea4ed33b8a69641ba2e0c3f1f600 (diff)
parent64981b4c8e88812c322bee3832f1d421ff670ed5 (diff)
downloadbusybox-w32-ead8b92e3d66ab45235e137f85fb3a529dcc64ef.tar.gz
busybox-w32-ead8b92e3d66ab45235e137f85fb3a529dcc64ef.tar.bz2
busybox-w32-ead8b92e3d66ab45235e137f85fb3a529dcc64ef.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'util-linux/lsusb.c')
-rw-r--r--util-linux/lsusb.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/util-linux/lsusb.c b/util-linux/lsusb.c
index 64a00eee2..9abb748ce 100644
--- a/util-linux/lsusb.c
+++ b/util-linux/lsusb.c
@@ -24,11 +24,9 @@
24 24
25#include "libbb.h" 25#include "libbb.h"
26 26
27static int FAST_FUNC fileAction( 27static int FAST_FUNC fileAction(struct recursive_state *state UNUSED_PARAM,
28 const char *fileName, 28 const char *fileName,
29 struct stat *statbuf UNUSED_PARAM, 29 struct stat *statbuf UNUSED_PARAM)
30 void *userData UNUSED_PARAM,
31 int depth UNUSED_PARAM)
32{ 30{
33 parser_t *parser; 31 parser_t *parser;
34 char *tokens[4]; 32 char *tokens[4];
@@ -80,8 +78,8 @@ int lsusb_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
80 ACTION_RECURSE, 78 ACTION_RECURSE,
81 fileAction, 79 fileAction,
82 NULL, /* dirAction */ 80 NULL, /* dirAction */
83 NULL, /* userData */ 81 NULL /* userData */
84 0 /* depth */); 82 );
85 83
86 return EXIT_SUCCESS; 84 return EXIT_SUCCESS;
87} 85}