Fix clang warning, introduced in the recent dtrace import.

MFC after:	   3 days
This commit is contained in:
Dimitry Andric 2012-07-03 12:08:55 +00:00
parent 82cecbea69
commit ae88a6d9ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=238071

View File

@ -796,7 +796,7 @@ dt_print_llquantize(dtrace_hdl_t *dtp, FILE *fp, const void *addr,
return (0);
assert(last_bin == bin);
(void) snprintf(c, sizeof (c), ">= %lld", value);
(void) snprintf(c, sizeof (c), ">= %lld", (long long)value);
if (dt_printf(dtp, fp, "%16s ", c) < 0)
return (-1);