diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-08-17 11:17:04 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-08-17 11:17:04 -0700 |
commit | 2ae1ae5cf441a90171ff483e3f0de6e8a9d611e4 (patch) | |
tree | 06b8614ae25c38af343a4c43ede0a2d4c4cee6b9 /elf/dl-iteratephdr.c | |
parent | e66a42f57fd20d1c7bbdc5f7937831d13bcf709b (diff) | |
download | glibc-2ae1ae5cf441a90171ff483e3f0de6e8a9d611e4.tar.gz glibc-2ae1ae5cf441a90171ff483e3f0de6e8a9d611e4.tar.xz glibc-2ae1ae5cf441a90171ff483e3f0de6e8a9d611e4.zip |
Change type of constant to avoid a warning.
Diffstat (limited to 'elf/dl-iteratephdr.c')
-rw-r--r-- | elf/dl-iteratephdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-iteratephdr.c b/elf/dl-iteratephdr.c index bac5779530..95c2afda06 100644 --- a/elf/dl-iteratephdr.c +++ b/elf/dl-iteratephdr.c @@ -1,5 +1,5 @@ /* Get loaded objects program headers. - Copyright (C) 2001-2004, 2006-2009, 2010, 2011 Free Software Foundation, Inc. + Copyright (C) 2001-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2001. @@ -39,7 +39,7 @@ __dl_iterate_phdr (int (*callback) (struct dl_phdr_info *info, /* Make sure nobody modifies the list of loaded objects. */ __rtld_lock_lock_recursive (GL(dl_load_write_lock)); - __libc_cleanup_push (cancel_handler, 0); + __libc_cleanup_push (cancel_handler, NULL); /* We have to determine the namespace of the caller since this determines which namespace is reported. */ |