Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
SWIFT
SWIFTsim
Commits
8fddd637
Commit
8fddd637
authored
6 years ago
by
James Willis
Browse files
Options
Downloads
Patches
Plain Diff
Updated enum names for VELOCIraptor output.
parent
21d1dd6a
No related branches found
No related tags found
1 merge request
!621
Updated enum names for VELOCIraptor output.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/velociraptor_interface.c
+2
-2
2 additions, 2 deletions
src/velociraptor_interface.c
with
2 additions
and
2 deletions
src/velociraptor_interface.c
+
2
−
2
View file @
8fddd637
...
...
@@ -218,10 +218,10 @@ void velociraptor_invoke(struct engine *e) {
/* Append base name with either the step number or time depending on what
* format is specified in the parameter file. */
char
outputFileName
[
PARSER_MAX_LINE_SIZE
+
128
];
if
(
e
->
stf_output_freq_format
==
STEPS
)
{
if
(
e
->
stf_output_freq_format
==
io_stf_steps
)
{
snprintf
(
outputFileName
,
PARSER_MAX_LINE_SIZE
+
128
,
"%s_%04i.VELOCIraptor"
,
e
->
stfBaseName
,
e
->
step
);
}
else
if
(
e
->
stf_output_freq_format
==
TIME
)
{
}
else
if
(
e
->
stf_output_freq_format
==
io_stf_time
)
{
snprintf
(
outputFileName
,
PARSER_MAX_LINE_SIZE
+
128
,
"%s_%04e.VELOCIraptor"
,
e
->
stfBaseName
,
e
->
time
);
}
...
...
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