In cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c, a size_t is passed

to fprintf as a field width.  It should be an int instead, so cast it.

MFC after:	1 week
This commit is contained in:
Dimitry Andric 2011-12-16 21:29:46 +00:00
parent 139df251d9
commit 1e02cf9b8c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228597

View File

@ -228,7 +228,7 @@ usage(void)
"\n"
" Note: if -L labelenv is specified and labelenv is not set in\n"
" the environment, a default value is used.\n",
progname, progname, strlen(progname), " ",
progname, progname, (int)strlen(progname), " ",
progname, progname);
}