diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-16 03:22:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-16 03:22:41 +0000 |
commit | eb64f8cbe3fd1b8e10b1269fa345ea2a0caa976c (patch) | |
tree | 7661571a7ea2348d5be1e7aaceb087091fe3903a /gmon | |
parent | * configure.in (libc_cv_visibility_attribute): Use AC_TRY_COMMAND, (diff) | |
download | glibc-eb64f8cbe3fd1b8e10b1269fa345ea2a0caa976c.tar.gz glibc-eb64f8cbe3fd1b8e10b1269fa345ea2a0caa976c.tar.bz2 glibc-eb64f8cbe3fd1b8e10b1269fa345ea2a0caa976c.zip |
* posix/fnmatch_loop.c: Add casts for signedness.
* nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
* gmon/gmon.c (write_call_graph): Use u_long for FROM_LEN.
* nscd/nscd_getgr_r.c (nscd_getgr_r): Use nscd_ssize_t for CNT.
Diffstat (limited to 'gmon')
-rw-r--r-- | gmon/gmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmon/gmon.c b/gmon/gmon.c index 889f9ac6a7..9f8dda1cec 100644 --- a/gmon/gmon.c +++ b/gmon/gmon.c @@ -213,7 +213,7 @@ write_call_graph (fd) struct gmon_cg_arc_record raw_arc[NARCS_PER_WRITEV] __attribute__ ((aligned (__alignof__ (char*)))); ARCINDEX from_index, to_index; - int from_len; + u_long from_len; u_long frompc; struct iovec iov[2 * NARCS_PER_WRITEV]; int nfilled; |