From a9c238a1fcdc4c6e8ca7aaba36d60958885b1b3c Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Mon, 26 Dec 2011 21:05:07 -0800 Subject: [PATCH] Removed a log --- wutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wutil.cpp b/wutil.cpp index 8075b5e2f..18ff38937 100644 --- a/wutil.cpp +++ b/wutil.cpp @@ -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); }