diff --git a/sapfor/experts/Sapfor_2017/_src/Inliner/inliner.cpp b/sapfor/experts/Sapfor_2017/_src/Inliner/inliner.cpp index c8ea081..c55acd2 100644 --- a/sapfor/experts/Sapfor_2017/_src/Inliner/inliner.cpp +++ b/sapfor/experts/Sapfor_2017/_src/Inliner/inliner.cpp @@ -2386,7 +2386,7 @@ static void convertLinesToAbsolute(const map>& allFunc if (detCall.detailCallsFrom == make_pair(funcToInl, targetLine) && added.find(make_tuple(file, funcToInl, targetLine)) == added.end()) { - __spf_print(1, "%s %d (was %d) %s\n", funcToInl, targetLine, std::get<2>(inDataProc[z]), funcByFile.first.c_str()); + __spf_print(1, "%s %d (was %d) %s\n", funcToInl.c_str(), targetLine, std::get<2>(inDataProc[z]), funcByFile.first.c_str()); added.insert(make_tuple(file, funcToInl, targetLine)); absoluteLine = targetLine; break; diff --git a/sapfor/experts/Sapfor_2017/_src/Utils/SgUtils.cpp b/sapfor/experts/Sapfor_2017/_src/Utils/SgUtils.cpp index 62dc4e0..432dfd2 100644 --- a/sapfor/experts/Sapfor_2017/_src/Utils/SgUtils.cpp +++ b/sapfor/experts/Sapfor_2017/_src/Utils/SgUtils.cpp @@ -2918,7 +2918,7 @@ private: { #ifdef _MSC_VER ret = pipe(pipes, 1024 * 1024 * 20, O_BINARY); // 20 MB -#else +#else ret = pipe(pipes) == -1; fcntl(*pipes, F_SETPIPE_SZ, 1024 * 1024 * 20); #endif diff --git a/sapfor/experts/Sapfor_2017/_src/Utils/version.h b/sapfor/experts/Sapfor_2017/_src/Utils/version.h index 10b00ca..d049651 100644 --- a/sapfor/experts/Sapfor_2017/_src/Utils/version.h +++ b/sapfor/experts/Sapfor_2017/_src/Utils/version.h @@ -1,3 +1,3 @@ #pragma once -#define VERSION_SPF "2255" +#define VERSION_SPF "2256"