| Index: components/storage_monitor/volume_mount_watcher_win.cc
|
| diff --git a/components/storage_monitor/volume_mount_watcher_win.cc b/components/storage_monitor/volume_mount_watcher_win.cc
|
| index 87820c41ba8ce1f5b970682b2df2c50a72c3d94f..14225c6ffddb5db5484dccaf4bc1e33935680c96 100644
|
| --- a/components/storage_monitor/volume_mount_watcher_win.cc
|
| +++ b/components/storage_monitor/volume_mount_watcher_win.cc
|
| @@ -343,7 +343,7 @@ base::FilePath VolumeMountWatcherWin::DriveNumberToFilePath(int drive_number) {
|
| if (drive_number < 0 || drive_number > 25)
|
| return base::FilePath();
|
| base::string16 path(L"_:\\");
|
| - path[0] = L'A' + drive_number;
|
| + path[0] = static_cast<base::char16>('A' + drive_number);
|
| return base::FilePath(path);
|
| }
|
|
|
|
|