Fix compiler warnings for GetGDBStoppointType().


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139402 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index 5c04c36..3bb551a 100644
--- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -1894,9 +1894,9 @@
     assert(watch_read || watch_write);
     if (watch_read && watch_write)
         return eWatchpointReadWrite;
-    if (watch_read)
+    else if (watch_read)
         return eWatchpointRead;
-    if (watch_write)
+    else // Must be watch_write, then.
         return eWatchpointWrite;
 }