Split size in regset section iterators
[deliverable/binutils-gdb.git] / gdb / dtrace-probe.c
index 71530aa90956bc03397e219ae8852eea0baeb700..fa4e06e794719a1c20030bdc7b7d365fa5b2794b 100644 (file)
@@ -778,7 +778,7 @@ dtrace_probe::enable ()
 
   /* Enabling a dtrace probe implies patching the text section of the
      running process, so make sure the inferior is indeed running.  */
-  if (ptid_equal (inferior_ptid, null_ptid))
+  if (inferior_ptid == null_ptid)
     error (_("No inferior running"));
 
   /* Fast path.  */
@@ -802,7 +802,7 @@ dtrace_probe::disable ()
 
   /* Disabling a dtrace probe implies patching the text section of the
      running process, so make sure the inferior is indeed running.  */
-  if (ptid_equal (inferior_ptid, null_ptid))
+  if (inferior_ptid == null_ptid)
     error (_("No inferior running"));
 
   /* Fast path.  */
This page took 0.024457 seconds and 4 git commands to generate.