Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
scdaq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
scouting-demonstrator
scdaq
Commits
2bea2c76
Commit
2bea2c76
authored
2 years ago
by
Emilio Meschi
Browse files
Options
Downloads
Patches
Plain Diff
Revert "removed some compilation warning"
This reverts commit
a56024f9
parent
e0ea3fe1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools.h
+2
-2
2 additions, 2 deletions
src/tools.h
with
2 additions
and
2 deletions
src/tools.h
+
2
−
2
View file @
2bea2c76
...
...
@@ -57,7 +57,7 @@ namespace filesystem {
inline
bool
create_directories
(
std
::
string
&
path
)
{
char
tmp
[
PATH_MAX
];
// Add terminating '/' and make a writable copy;
// Add terminating '/' and make a writ
t
able copy;
int
len
=
snprintf
(
tmp
,
sizeof
(
tmp
),
"%s/"
,
path
.
c_str
());
if
(
len
>
PATH_MAX
)
len
=
PATH_MAX
;
...
...
@@ -65,7 +65,7 @@ inline bool create_directories(std::string &path) {
for
(
char
*
p
=
tmp
;
*
p
;
p
++
)
{
if
(
*
p
==
'/'
)
{
// Found a new directory, ignore any subsequent back slashes
long
int
dir_len
=
p
-
last_backslash
-
1
;
int
dir_len
=
p
-
last_backslash
-
1
;
if
(
dir_len
>
0
)
{
*
p
=
0
;
if
(
mkdir
(
tmp
,
S_IRWXU
|
S_IRWXG
|
S_IRWXO
)
<
0
&&
(
errno
!=
EEXIST
))
{
...
...
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