diff options
author | Roland McGrath <roland@redhat.com> | 2011-02-04 10:35:15 -0800 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2011-02-04 10:53:51 -0800 |
commit | a0bf67cca2b7de3a745ab5cf0f9d6e74078d57af (patch) | |
tree | 83eef0b2a457ba62a716a464dad5cadb6e9dbe09 /elf | |
parent | 091023f58fd6a18caeaa275b7c52048cc70dd3d2 (diff) | |
download | glibc-a0bf67cca2b7de3a745ab5cf0f9d6e74078d57af.zip glibc-a0bf67cca2b7de3a745ab5cf0f9d6e74078d57af.tar.gz glibc-a0bf67cca2b7de3a745ab5cf0f9d6e74078d57af.tar.bz2 |
Fix some warning nits.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-object.c b/elf/dl-object.c index 5d15ce1..b30c845 100644 --- a/elf/dl-object.c +++ b/elf/dl-object.c @@ -1,5 +1,6 @@ /* Storage management for the chain of loaded shared objects. - Copyright (C) 1995-2002,2004,2006-2009,2010 Free Software Foundation, Inc. + Copyright (C) 1995-2002,2004,2006,2007,2008,2009,2010,2011 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -60,7 +61,6 @@ internal_function _dl_new_object (char *realname, const char *libname, int type, struct link_map *loader, int mode, Lmid_t nsid) { - struct link_map *l; size_t libname_len = strlen (libname) + 1; struct link_map *new; struct libname_list *newname; |