1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Constify string parameters

This commit is contained in:
Andreas Schwab
2014-12-11 16:00:49 +01:00
parent 9d96909913
commit acf869f4bc
2 changed files with 7 additions and 2 deletions

View File

@@ -441,7 +441,7 @@ struct relocate_args
struct map_args
{
/* Argument to map_doit. */
char *str;
const char *str;
struct link_map *loader;
int mode;
/* Return value of map_doit. */
@@ -651,7 +651,7 @@ _dl_initial_error_catch_tsd (void)
static unsigned int
do_preload (char *fname, struct link_map *main_map, const char *where)
do_preload (const char *fname, struct link_map *main_map, const char *where)
{
const char *objname;
const char *err_str = NULL;