mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Cleanup.
This commit is contained in:
@@ -279,7 +279,7 @@ namespace bx
|
||||
return false;
|
||||
}
|
||||
|
||||
m_fd = crt0::open(_filePath.get(), crt0::Open::Read, 0);
|
||||
m_fd = crt0::open(_filePath.getCPtr(), crt0::Open::Read, 0);
|
||||
|
||||
if (0 >= m_fd)
|
||||
{
|
||||
@@ -360,7 +360,7 @@ namespace bx
|
||||
return false;
|
||||
}
|
||||
|
||||
m_fd = crt0::open(_filePath.get(), _append ? crt0::Open::Append : crt0::Open::Write, 0600);
|
||||
m_fd = crt0::open(_filePath.getCPtr(), _append ? crt0::Open::Append : crt0::Open::Write, 0600);
|
||||
|
||||
if (0 >= m_fd)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user