diff options
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index de941924633..aa3cf6b0308 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -405,7 +405,7 @@ ProcessGDBRemote::DoLaunch                                               NULL, //stdin_path,                                               LLDB_INVALID_PROCESS_ID,                                               NULL, false, -                                             launch_flags & eLaunchFlagDisableASLR != 0, +                                             (launch_flags & eLaunchFlagDisableASLR) != 0,                                               inferior_arch);              if (error.Fail())                  return error; @@ -424,7 +424,7 @@ ProcessGDBRemote::DoLaunch                                               NULL, //stdin_path,                                               LLDB_INVALID_PROCESS_ID,                                               NULL, false, -                                             launch_flags & eLaunchFlagDisableASLR != 0, +                                             (launch_flags & eLaunchFlagDisableASLR) != 0,                                               inferior_arch);              if (error.Fail())                  return error;  | 

