File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ Miscellaneous
9090-------------
9191
9292- updated ampl/mp to version 4.0.4
93+ - switch from GetTempPath2A to GetTempPathA in nl writer for Windows for broader compatibility
9394
9495@section RN1000 SCIP 10.0.0
9596***************************
Original file line number Diff line number Diff line change @@ -3012,7 +3012,7 @@ SCIP_DECL_READERWRITE(readerWriteNl)
30123012 /* construct a temporary directory in /tmp/scipnlwrite-XXXXXX */
30133013#ifdef _WIN32
30143014 TCHAR systemtmp[MAX_PATH + 1 ];
3015- DWORD gettemprc = GetTempPath2A (MAX_PATH + 1 , systemtmp);
3015+ DWORD gettemprc = GetTempPathA (MAX_PATH + 1 , systemtmp);
30163016 if ( gettemprc == 0 || gettemprc > MAX_PATH + 1 )
30173017 {
30183018 SCIPerrorMessage (" Cannot get name of directory for temporary files: error %d\n " , errno);
You can’t perform that action at this time.
0 commit comments