Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
alex037yang
OpenXG-RAN
Commits
e121d173
Commit
e121d173
authored
Apr 09, 2020
by
wujing
Committed by
Robert Schmidt
Dec 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix cppcheck warning
(cherry picked from commit aaa4d390fdefc4e8071b80edc90a580907c9dec3)
parent
40e88d57
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
openair3/S1AP/s1ap_eNB.c
openair3/S1AP/s1ap_eNB.c
+2
-2
openair3/S1AP/s1ap_eNB_timer.c
openair3/S1AP/s1ap_eNB_timer.c
+2
-2
No files found.
openair3/S1AP/s1ap_eNB.c
View file @
e121d173
...
...
@@ -317,12 +317,12 @@ void s1ap_eNB_handle_sctp_association_resp(instance_t instance, sctp_new_associa
if
(
itti_send_msg_to_task
(
TASK_RRC_ENB
,
ue_p
->
eNB_instance
->
instance
,
message_p
)
<
0
)
{
S1AP_ERROR
(
"UE Context Release Command Transmission Failure: eNB_ue_s1ap_id=%
d
\n
"
,
ue_p
->
eNB_ue_s1ap_id
);
S1AP_ERROR
(
"UE Context Release Command Transmission Failure: eNB_ue_s1ap_id=%
u
\n
"
,
ue_p
->
eNB_ue_s1ap_id
);
}
}
else
{
S1AP_ERROR
(
"Invalid message_p : eNB_ue_s1ap_id=%
d
\n
"
,
ue_p
->
eNB_ue_s1ap_id
);
S1AP_ERROR
(
"Invalid message_p : eNB_ue_s1ap_id=%
u
\n
"
,
ue_p
->
eNB_ue_s1ap_id
);
}
}
}
...
...
openair3/S1AP/s1ap_eNB_timer.c
View file @
e121d173
...
...
@@ -82,11 +82,11 @@ int s1ap_timer_timeout(sigval_t info)
if
(
pthread_mutex_unlock
(
&
timer_desc
.
timer_list_mutex
)
!=
0
)
{
S1AP_ERROR
(
"Failed to mutex unlock timeout=%x
\n
"
,
timer_kind
);
S1AP_ERROR
(
"Failed to mutex unlock timeout=
0x
%x
\n
"
,
timer_kind
);
}
if
(
timer_p
==
NULL
)
{
S1AP_ERROR
(
"Didn't find timer 0x%
l
x in list
\n
"
,
timer_kind
);
S1AP_ERROR
(
"Didn't find timer 0x%x in list
\n
"
,
timer_kind
);
return
-
1
;
}
...
...
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