stap-probe: Remove unnecessary cast
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 22 Sep 2015 15:17:52 +0000 (11:17 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 22 Sep 2015 15:18:09 +0000 (11:18 -0400)
ret->args_u.text is const char *, probe_args is const char *, so no cast
is needed.  Found while doing cxx-conversion stuff, since it wouldn't
build in C++.

gdb/ChangeLog:

* stap-probe.c (handle_stap_probe): Remove unnecessary cast.

gdb/ChangeLog
gdb/stap-probe.c

index 188bfb262c4fa966ab73aa700436d5c6a42fb7d5..42ffaf7b8690ce5cd09ab0588ae381beaba4928d 100644 (file)
@@ -1,3 +1,7 @@
+2015-09-22  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * stap-probe.c (handle_stap_probe): Remove unnecessary cast.
+
 2015-09-21  Simon Marchi  <simon.marchi@ericsson.com>
 
        * cli/cli-setshow.c (cmd_show_list): Constify a variable.
index 912505cfcbd922a38621e086e90484a21abc6aba..8f8cea67fd339a6e8d7431833d52788c0af5f168 100644 (file)
@@ -1538,7 +1538,7 @@ handle_stap_probe (struct objfile *objfile, struct sdt_note *el,
     }
 
   ret->args_parsed = 0;
-  ret->args_u.text = (void *) probe_args;
+  ret->args_u.text = probe_args;
 
   /* Successfully created probe.  */
   VEC_safe_push (probe_p, *probesp, (struct probe *) ret);