Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
performance
storage
superDeimos
Commits
279c2d65
Commit
279c2d65
authored
Jan 22, 2020
by
Ciarán Ó Rourke
Browse files
More c_str()s
parent
0001a0c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/fiphobo/fiphobo.cc
View file @
279c2d65
...
...
@@ -168,9 +168,9 @@ FiPhobo::~FiPhobo()
{
close
(
fifo_descriptor
);
}
if
(
access
(
fifoName
,
F_OK
)
!=
-
1
)
if
(
access
(
fifoName
.
c_str
()
,
F_OK
)
!=
-
1
)
{
remove
(
fifoName
);
remove
(
fifoName
.
c_str
()
);
}
}
...
...
Ciarán Ó Rourke
@ciaran.orourke
mentioned in commit
993050da
·
Feb 13, 2020
mentioned in commit
993050da
mentioned in commit 993050da128479dbad9b2b0b5d1bf725b6d2ed4e
Toggle commit list
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment