mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-16 13:03:08 +05:00
1) fix MeshJobManager_i.cxx:208: error: invalid conversion from 'const char*' to 'char*'
2) untabify
This commit is contained in:
parent
f93b8b08cc
commit
c20306b7e6
@ -203,9 +203,9 @@ const char* MeshJobManager_i::_writeScriptFile(const char * dataFileName, const
|
||||
#ifdef WIN32
|
||||
char fname[ _MAX_FNAME ];
|
||||
_splitpath( dataFileName, NULL, NULL, fname, NULL );
|
||||
char* bname = &fname[0];
|
||||
const char* bname = &fname[0];
|
||||
#else
|
||||
char* bname = basename(dataFileName);
|
||||
const char* bname = basename(dataFileName);
|
||||
#endif
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user