Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-AMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-AMF
Commits
0f1db767
Commit
0f1db767
authored
Jun 28, 2022
by
kharade
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not display SD_NO_VALUE
parent
afc6ccdc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/amf-app/amf_config.cpp
src/amf-app/amf_config.cpp
+4
-2
No files found.
src/amf-app/amf_config.cpp
View file @
0f1db767
...
...
@@ -717,7 +717,8 @@ void amf_config::display() {
str
=
str
.
append
(
" SST"
)
.
append
(
(
plmn_list
[
i
].
slice_list
[
j
].
sst
>
SST_MAX_STANDARDIZED_VALUE
)
?
SST_MAX_STANDARDIZED_VALUE
&&
(
plmn_list
[
i
].
slice_list
[
j
].
sd
!=
SD_NO_VALUE
))
?
", SD "
:
" ...."
)
.
append
(
"...........: "
)
...
...
@@ -725,7 +726,8 @@ void amf_config::display() {
.
append
(
""
)
.
append
(
(
plmn_list
[
i
].
slice_list
[
j
].
sst
>
SST_MAX_STANDARDIZED_VALUE
)
?
SST_MAX_STANDARDIZED_VALUE
&&
(
plmn_list
[
i
].
slice_list
[
j
].
sd
!=
SD_NO_VALUE
))
?
", "
+
std
::
to_string
(
plmn_list
[
i
].
slice_list
[
j
].
sd
)
:
" "
);
Logger
::
config
().
info
(
str
.
c_str
());
...
...
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