Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dyyu
openairinterface5G
Commits
c98339e1
Commit
c98339e1
authored
May 22, 2017
by
Cédric Roux
Browse files
integration fix: remove compilation warnings
parent
2237b431
Changes
1
Hide whitespace changes
Inline
Side-by-side
targets/ARCH/ETHERNET/USERSPACE/LIB/ethernet_lib.c
View file @
c98339e1
...
...
@@ -297,7 +297,7 @@ int ethernet_tune(openair0_device *device, unsigned int option, int value) {
if
(
ret
==
-
1
)
{
fprintf
(
stderr
,
"[ETHERNET] Can't start shell to execute %s %s"
,
system_cmd
,
strerror
(
errno
));
}
else
{
printf
(
"[ETHERNET] status of %s is %
i
\n
"
,
WEXITSTATUS
(
ret
));
printf
(
"[ETHERNET] status of %s is %
d
\n
"
,
system_cmd
,
WEXITSTATUS
(
ret
));
}
printf
(
"[ETHERNET] Coalesce parameters %s
\n
"
,
system_cmd
);
}
else
{
...
...
@@ -314,7 +314,7 @@ int ethernet_tune(openair0_device *device, unsigned int option, int value) {
if
(
ret
==
-
1
)
{
fprintf
(
stderr
,
"[ETHERNET] Can't start shell to execute %s %s"
,
system_cmd
,
strerror
(
errno
));
}
else
{
printf
(
"[ETHERNET] status of %s is %
i
\n
"
,
WEXITSTATUS
(
ret
));
printf
(
"[ETHERNET] status of %s is %
d
\n
"
,
system_cmd
,
WEXITSTATUS
(
ret
));
}
printf
(
"[ETHERNET] Pause parameters %s
\n
"
,
system_cmd
);
}
else
{
...
...
@@ -329,7 +329,7 @@ int ethernet_tune(openair0_device *device, unsigned int option, int value) {
if
(
ret
==
-
1
)
{
fprintf
(
stderr
,
"[ETHERNET] Can't start shell to execute %s %s"
,
system_cmd
,
strerror
(
errno
));
}
else
{
printf
(
"[ETHERNET] status of %s is %
i
\n
"
,
WEXITSTATUS
(
ret
));
printf
(
"[ETHERNET] status of %s is %
d
\n
"
,
system_cmd
,
WEXITSTATUS
(
ret
));
}
printf
(
"[ETHERNET] Ring parameters %s
\n
"
,
system_cmd
);
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment