stap-probe.c: Add casts
authorSimon Marchi <simon.marchi@polymtl.ca>
Tue, 27 Oct 2015 02:04:10 +0000 (22:04 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Tue, 27 Oct 2015 02:04:10 +0000 (22:04 -0400)
gdb/ChangeLog:

* stap-probe.c (handle_stap_probe): Add (const char *) casts.

gdb/ChangeLog
gdb/stap-probe.c

index a063a04..568d486 100644 (file)
@@ -1,5 +1,9 @@
 2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
 
+       * stap-probe.c (handle_stap_probe): Add (const char *) casts.
+
+2015-10-26  Simon Marchi  <simon.marchi@polymtl.ca>
+
        * ctf.c (ctf_xfer_partial): Return TARGET_XFER_E_IO instead of
        -1 on error.
 
index d88c470..18e0d83 100644 (file)
@@ -1488,8 +1488,9 @@ handle_stap_probe (struct objfile *objfile, struct sdt_note *el,
 
   /* Provider and the name of the probe.  */
   ret->p.provider = (char *) &el->data[3 * size];
-  ret->p.name = memchr (ret->p.provider, '\0',
-                       (char *) el->data + el->size - ret->p.provider);
+  ret->p.name = ((const char *)
+                memchr (ret->p.provider, '\0',
+                        (char *) el->data + el->size - ret->p.provider));
   /* Making sure there is a name.  */
   if (ret->p.name == NULL)
     {
@@ -1519,8 +1520,9 @@ handle_stap_probe (struct objfile *objfile, struct sdt_note *el,
 
   /* Arguments.  We can only extract the argument format if there is a valid
      name for this probe.  */
-  probe_args = memchr (ret->p.name, '\0',
-                      (char *) el->data + el->size - ret->p.name);
+  probe_args = ((const char*)
+               memchr (ret->p.name, '\0',
+                       (char *) el->data + el->size - ret->p.name));
 
   if (probe_args != NULL)
     ++probe_args;