summaryrefslogtreecommitdiffstats
path: root/cddl
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2011-12-16 15:12:42 +0000
committerdim <dim@FreeBSD.org>2011-12-16 15:12:42 +0000
commitd3f016462804c2367ae9ab0d430cfdc16180ca5f (patch)
treed5f7e094944ca829b42c2467fb14607b78d464cd /cddl
parentc9021301d1dd1e98985b809f54fd4c414a1b2c90 (diff)
downloadFreeBSD-src-d3f016462804c2367ae9ab0d430cfdc16180ca5f.zip
FreeBSD-src-d3f016462804c2367ae9ab0d430cfdc16180ca5f.tar.gz
In cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c, some
uint64_t values are snprintf'd using %llx. On amd64, uint64_t is typedef'd as unsigned long, so cast the values to u_longlong_t, as is done similarly in the rest of the file. MFC after: 1 week
Diffstat (limited to 'cddl')
-rw-r--r--cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c
index ea039e9..fe1ec7a 100644
--- a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c
+++ b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c
@@ -335,7 +335,8 @@ dt_handle_cpudrop(dtrace_hdl_t *dtp, processorid_t cpu,
}
(void) snprintf(s, size, "%llu %sdrop%s on CPU %d\n",
- howmany, what == DTRACEDROP_PRINCIPAL ? "" : "aggregation ",
+ (u_longlong_t)howmany,
+ what == DTRACEDROP_PRINCIPAL ? "" : "aggregation ",
howmany > 1 ? "s" : "", cpu);
if (dtp->dt_drophdlr == NULL)
@@ -427,7 +428,8 @@ dt_handle_status(dtrace_hdl_t *dtp, dtrace_status_t *old, dtrace_status_t *new)
size = sizeof (str);
}
- (void) snprintf(s, size, "%llu %s%s%s\n", nval - oval,
+ (void) snprintf(s, size, "%llu %s%s%s\n",
+ (u_longlong_t)(nval - oval),
_dt_droptab[i].dtdrt_str, (nval - oval > 1) ? "s" : "",
_dt_droptab[i].dtdrt_msg != NULL ?
_dt_droptab[i].dtdrt_msg : "");
OpenPOWER on IntegriCloud