[lldb] Remove 'result' variable which is set but not used (NFC)
authorJonas Devlieghere <jonas@devlieghere.com>
Sat, 6 Nov 2021 03:41:28 +0000 (20:41 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Sat, 6 Nov 2021 04:12:00 +0000 (21:12 -0700)
lldb/tools/debugserver/source/TTYState.cpp

index 96699a3..9fe83a3 100644 (file)
@@ -39,20 +39,19 @@ bool TTYState::GetTTYState(int fd, bool saveProcessGroup) {
 }
 
 bool TTYState::SetTTYState() const {
-  int result = 0;
   if (IsValid()) {
     if (TFlagsValid())
-      result = fcntl(m_fd, F_SETFL, m_tflags);
+      fcntl(m_fd, F_SETFL, m_tflags);
 
     if (TTYStateValid())
-      result = tcsetattr(m_fd, TCSANOW, &m_ttystate);
+      tcsetattr(m_fd, TCSANOW, &m_ttystate);
 
     if (ProcessGroupValid()) {
       // Save the original signal handler.
       void (*saved_sigttou_callback)(int) = NULL;
       saved_sigttou_callback = (void (*)(int))signal(SIGTTOU, SIG_IGN);
       // Set the process group
-      result = tcsetpgrp(m_fd, m_processGroup);
+      tcsetpgrp(m_fd, m_processGroup);
       // Restore the original signal handler.
       signal(SIGTTOU, saved_sigttou_callback);
     }