mirror of
https://git.rtems.org/rtems-tools/
synced 2025-05-13 01:57:42 +08:00
fix _mkdir parameter error.
fix _mkdir parameter error. Signed-off-by: zhengxiaojun <jameszxj at gmail.com>
This commit is contained in:
parent
40529bc566
commit
df2d86ecda
@ -65,7 +65,7 @@ void ReportsBase::OpenFile(
|
|||||||
|
|
||||||
// Create the output directory if it does not already exist
|
// Create the output directory if it does not already exist
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
sc = _mkdir( symbolSetOutputDirectory );
|
sc = _mkdir( symbolSetOutputDirectory.c_str() );
|
||||||
#else
|
#else
|
||||||
sc = mkdir( symbolSetOutputDirectory.c_str(), 0755 );
|
sc = mkdir( symbolSetOutputDirectory.c_str(), 0755 );
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user