diff options
author | Roland McGrath <roland@redhat.com> | 2010-05-07 16:23:03 -0700 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2010-05-07 16:23:03 -0700 |
commit | 3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9 (patch) | |
tree | cdb2b22fe4ee96c465941a1e6b6aa2e68c472b67 /elf/ldconfig.c | |
parent | 265bb1ce9423afb46c9627865fdd7a90ce8e85fc (diff) | |
download | glibc-3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9.zip glibc-3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9.tar.gz glibc-3f7dcb2b0f9f2e771f2fd0139f032198c2d01ba9.tar.bz2 |
Fix a const warning in ldconfig.
Diffstat (limited to 'elf/ldconfig.c')
-rw-r--r-- | elf/ldconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/ldconfig.c b/elf/ldconfig.c index 00664e6..b4af31e 100644 --- a/elf/ldconfig.c +++ b/elf/ldconfig.c @@ -1357,7 +1357,7 @@ main (int argc, char **argv) add_system_dir (LIBDIR); } - char *aux_cache_file = _PATH_LDCONFIG_AUX_CACHE; + const char *aux_cache_file = _PATH_LDCONFIG_AUX_CACHE; if (opt_chroot) { aux_cache_file = chroot_canon (opt_chroot, aux_cache_file); |