| Index: base/process_linux.cc
|
| diff --git a/base/process_linux.cc b/base/process_linux.cc
|
| index 83d9649405d25fb12a528912073fe6891657c66a..b7764fc3177e3d5447c9a1066d6a004424d35bf5 100644
|
| --- a/base/process_linux.cc
|
| +++ b/base/process_linux.cc
|
| @@ -42,8 +42,10 @@ struct CGroups {
|
| base::FilePath background_file;
|
|
|
| CGroups() {
|
| - foreground_file = base::FilePath(StringPrintf(kControlPath, kForeground));
|
| - background_file = base::FilePath(StringPrintf(kControlPath, kBackground));
|
| + foreground_file =
|
| + base::FilePath(base::StringPrintf(kControlPath, kForeground));
|
| + background_file =
|
| + base::FilePath(base::StringPrintf(kControlPath, kBackground));
|
| file_util::FileSystemType foreground_type;
|
| file_util::FileSystemType background_type;
|
| enabled =
|
|
|