We are passing a const char * to a const char * parameter, the
const_cast is not necessary.
gdb/ChangeLog:
	* tracepoint.c (tfind_command): Remove const_cast.
+2017-10-31  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * tracepoint.c (tfind_command): Remove const_cast.
+
 2017-10-30  Mike Gulick  <mgulick@mathworks.com>
 
        * Makefile.in (HFILES_NO_SRCDIR): Remove reference to gdb.h.
 
 static void
 tfind_command (const char *args, int from_tty)
 {
-  tfind_command_1 (const_cast<char *> (args), from_tty);
+  tfind_command_1 (args, from_tty);
 }
 
 /* tfind end */