| Index: chrome/install_static/install_util.cc
|
| diff --git a/chrome/install_static/install_util.cc b/chrome/install_static/install_util.cc
|
| index e57f67b2db570ec2ccba6a6ac09262022bfd1584..c31b90e8927cd71f4cedf026d3b44da0f2112046 100644
|
| --- a/chrome/install_static/install_util.cc
|
| +++ b/chrome/install_static/install_util.cc
|
| @@ -191,11 +191,11 @@ bool RecursiveDirectoryCreate(const std::wstring& full_path) {
|
| DWORD file_attributes = ::GetFileAttributes(full_path_str);
|
| if (file_attributes != INVALID_FILE_ATTRIBUTES) {
|
| if ((file_attributes & FILE_ATTRIBUTE_DIRECTORY) != 0) {
|
| - Trace(L"%hs( %ls directory exists )\n", __FUNCTION__, full_path_str);
|
| + Trace(L"%hs( %ls directory exists )\n", __func__, full_path_str);
|
| return true;
|
| }
|
| - Trace(L"%hs( %ls directory conflicts with an existing file. )\n",
|
| - __FUNCTION__, full_path_str);
|
| + Trace(L"%hs( %ls directory conflicts with an existing file. )\n", __func__,
|
| + full_path_str);
|
| return false;
|
| }
|
|
|
|
|