diff --git a/lib/checkobsoletefunctions.h b/lib/checkobsoletefunctions.h index aebfbea51..621db0a78 100644 --- a/lib/checkobsoletefunctions.h +++ b/lib/checkobsoletefunctions.h @@ -83,7 +83,7 @@ private: _obsoleteFunctions.push_back(std::make_pair("gcvt","Found obsolete function 'gcvt'. It is recommended that new applications use the 'sprintf' function")); _obsoleteFunctions.push_back(std::make_pair("ftime","Found obsolete function 'ftime'.\n" - "It is recommended that new applications use time(), gettimeofday(), or clock_gettime() instead.\n" + "It is recommended that new applications use time(), gettimeofday(), or clock_gettime() instead. " "For high-resolution timing on Windows, QueryPerformanceCounter() and QueryPerformanceFrequency may be used.")); _obsoleteFunctions.push_back(std::make_pair("getcontext","Found obsolete function 'getcontext'. Due to portability issues with this function, applications are recommended to be rewritten to use POSIX threads"));