diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-13 09:04:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-13 09:04:53 +0000 |
commit | 069b7c3e7f33b4c7f0d6dd04939d6fc52a97fe53 (patch) | |
tree | ed4b3dc8809422e033ce895579f50d651c5fa5be /csu | |
parent | aed283dd456e7566cbfef88abe7b235ca77cc23c (diff) | |
download | glibc-069b7c3e7f33b4c7f0d6dd04939d6fc52a97fe53.tar.gz |
Update.
2002-02-12 Andreas Schwab <schwab@suse.de>
* csu/gmon-start.c (__gmon_start__): Remove '&' from ENTRY_POINT.
Diffstat (limited to 'csu')
-rw-r--r-- | csu/gmon-start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csu/gmon-start.c b/csu/gmon-start.c index 4df3a1326e..1aaeefcf7f 100644 --- a/csu/gmon-start.c +++ b/csu/gmon-start.c @@ -1,5 +1,5 @@ /* Code to enable profiling at program startup. - Copyright (C) 1995, 1996, 1997, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002 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 @@ -63,7 +63,7 @@ __gmon_start__ (void) #endif /* Start keeping profiling records. */ - __monstartup ((u_long) &ENTRY_POINT, (u_long) &etext); + __monstartup ((u_long) ENTRY_POINT, (u_long) &etext); /* Call _mcleanup before exiting; it will write out gmon.out from the collected data. */ |