Corretta chiamata alla _strerror() in aperture files temporanei.

git-svn-id: svn://10.65.10.50/trunk@4227 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
angelo 1997-03-24 16:30:09 +00:00
parent fd7ca44866
commit fa15ce0480

View File

@ -1566,7 +1566,7 @@ TIsamtempfile::TIsamtempfile(int logicnum, const char* radix, bool create)
FILE* f = fopen(n, "r");
#if XVT_OS == XVT_OS_WIN || XVT_OS == XVT_OS_NT
CHECKS(f, "Can't open temporary file ", (const char*)strerror(NULL));
CHECKS(f, "Can't open temporary file ", (const char*)_strerror(NULL));
#else
CHECKS(f, "Can't open temporary file ", (const char*)n);
#endif