Index: services/service_manager/tests/util.cc |
diff --git a/services/service_manager/tests/util.cc b/services/service_manager/tests/util.cc |
index f32503673880dff12bfacc1295d806c9a983e466..a7488dad5b9064396a0e0df16a740059c895a233 100644 |
--- a/services/service_manager/tests/util.cc |
+++ b/services/service_manager/tests/util.cc |
@@ -86,9 +86,9 @@ mojom::ConnectResult LaunchAndConnectToProcess( |
base::LaunchOptions options; |
#if defined(OS_WIN) |
- options.handles_to_inherit = &handle_passing_info; |
+ options.handles_to_inherit = handle_passing_info; |
#elif defined(OS_POSIX) |
- options.fds_to_remap = &handle_passing_info; |
+ options.fds_to_remap = handle_passing_info; |
#endif |
*process = base::LaunchProcess(child_command_line, options); |
DCHECK(process->IsValid()); |