Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computing
cbmroot
Commits
efe2f65b
Commit
efe2f65b
authored
2 months ago
by
Pierre-Alain Loizeau
Committed by
Pierre-Alain Loizeau
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Online unpacking: change printout of unknown link IDs to hex
parent
5e1acbf0
No related branches found
No related tags found
1 merge request
!2024
Online unpacking: change printout of unknown link IDs to hex
Pipeline
#33008
passed
2 months ago
Stage: package
Stage: verify
Stage: documentation
Stage: deploy
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
algo/unpack/CommonUnpacker.cxx
+4
-1
4 additions, 1 deletion
algo/unpack/CommonUnpacker.cxx
with
4 additions
and
1 deletion
algo/unpack/CommonUnpacker.cxx
+
4
−
1
View file @
efe2f65b
...
...
@@ -3,6 +3,8 @@
Authors: Felix Weiglhofer [committer], Dominik Smith */
#include
"CommonUnpacker.h"
#include
<iomanip>
using
namespace
cbm
::
algo
;
detail
::
MSData
::
MSData
(
const
fles
::
Timeslice
&
ts
,
fles
::
Subsystem
subsystem
,
gsl
::
span
<
u16
>
legalEqIds
)
...
...
@@ -20,7 +22,8 @@ detail::MSData::MSData(const fles::Timeslice& ts, fles::Subsystem subsystem, gsl
const
u16
componentId
=
ts
.
descriptor
(
comp
,
0
).
eq_id
;
if
(
std
::
find
(
legalEqIds
.
begin
(),
legalEqIds
.
end
(),
componentId
)
==
legalEqIds
.
end
())
{
L_
(
error
)
<<
"Invalid equipment id "
<<
componentId
<<
" for subsystem "
<<
ToString
(
subsystem
);
L_
(
error
)
<<
"Invalid equipment id 0x"
<<
std
::
hex
<<
std
::
setw
(
4
)
<<
componentId
<<
std
::
dec
<<
" for subsystem "
<<
ToString
(
subsystem
);
monitor
.
errInvalidEqId
++
;
continue
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment