Removed a log

This commit is contained in:
ridiculousfish 2011-12-26 21:05:07 -08:00
parent 8d2f107d61
commit a9c238a1fc

View File

@ -181,7 +181,7 @@ int wstat(const wchar_t *file_name, struct stat *buf)
int lwstat(const wchar_t *file_name, struct stat *buf)
{
fprintf(stderr, "%s\n", __PRETTY_FUNCTION__);
// fprintf(stderr, "%s\n", __PRETTY_FUNCTION__);
cstring tmp = wcs2string(file_name);
return lstat(tmp.c_str(), buf);
}