Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
JenRungHuang
openairinterface5G
Commits
e3d39a01
Commit
e3d39a01
authored
Oct 20, 2017
by
Cedric Roux
Browse files
bugfix/compilation warning removal (not sure if correct)
basically the T_xx variables are int, not uint
parent
bf926e35
Changes
1
Hide whitespace changes
Inline
Side-by-side
targets/RT/USER/lte-softmodem.h
View file @
e3d39a01
...
...
@@ -198,9 +198,9 @@ extern int T_dont_fork;
/* optname helpstr paramflags XXXptr defXXXval type numelt */
/*------------------------------------------------------------------------------------------------------------------------------------------*/
#define CMDLINE_TTRACEPARAMS_DESC { \
{"T_port", CONFIG_HLP_TPORT, 0,
u
ptr:&T_port, def
u
intval:0, TYPE_
U
INT, 0}, \
{"T_nowait", CONFIG_HLP_NOTWAIT, PARAMFLAG_BOOL,
u
ptr:&T_nowait, def
u
intval:0, TYPE_
U
INT, 0}, \
{"T_dont_fork", CONFIG_HLP_TNOFORK, PARAMFLAG_BOOL,
u
ptr:&T_dont_fork, def
u
intval:1, TYPE_
U
INT, 0}, \
{"T_port", CONFIG_HLP_TPORT, 0,
i
ptr:&T_port, defintval:0, TYPE_INT, 0}, \
{"T_nowait", CONFIG_HLP_NOTWAIT, PARAMFLAG_BOOL,
i
ptr:&T_nowait, defintval:0, TYPE_INT, 0}, \
{"T_dont_fork", CONFIG_HLP_TNOFORK, PARAMFLAG_BOOL,
i
ptr:&T_dont_fork, defintval:1, TYPE_INT, 0}, \
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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