diff options
author | Omair Javaid <omair.javaid@linaro.org> | 2015-08-19 10:44:16 +0000 |
---|---|---|
committer | Omair Javaid <omair.javaid@linaro.org> | 2015-08-19 10:44:16 +0000 |
commit | dee4a867be1431eb0a25fc87c4960637acfaea2d (patch) | |
tree | 48e80af534a72d512203bf3a7bfca3fc27d1087d /lldb/source/Plugins/Process/Linux | |
parent | 0497084b69885b239bb7d7b9259405c4481ab39d (diff) | |
download | bcm5719-llvm-dee4a867be1431eb0a25fc87c4960637acfaea2d.tar.gz bcm5719-llvm-dee4a867be1431eb0a25fc87c4960637acfaea2d.zip |
Fix lldb-server arm-linux-g++ build
llvm-svn: 245428
Diffstat (limited to 'lldb/source/Plugins/Process/Linux')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index b237339c124..7203da27640 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -3284,7 +3284,7 @@ NativeProcessLinux::SigchldHandler() { signal = WTERMSIG(status); status_cstr = "SIGNALED"; - if (wait_pid == static_cast<::pid_t>(GetID())) { + if (wait_pid == static_cast< ::pid_t>(GetID())) { exited = true; exit_status = -1; } |