Commit 3fadc121 authored by matt mooney's avatar matt mooney Committed by Greg Kroah-Hartman

staging: usbip: userspace: bind-driver.c: mark remote_host as unused

Use __attribute__((unused)) to suppress error until it can be determined
that remote_host is not needed.
Signed-off-by: default avatarmatt mooney <mfm@muteddisk.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2006d35d
...@@ -541,7 +541,7 @@ static int allusbip(void) ...@@ -541,7 +541,7 @@ static int allusbip(void)
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
char *busid = NULL; char *busid = NULL;
char *remote_host = NULL; char *remote_host __attribute__((unused)) = NULL;
enum { enum {
cmd_unknown = 0, cmd_unknown = 0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment