stap-probe.c: Add casts

gdb/ChangeLog:

	* stap-probe.c (handle_stap_probe): Add (const char *) casts.
This commit is contained in:
Simon Marchi 2015-10-26 22:04:10 -04:00
parent c92444842b
commit bf6778dab2
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,7 @@
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

View 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;